Trait Transactional

Source
pub trait Transactional<TXN> {
    // Required methods
    fn upsert_in_transaction<'life0, 'life1, 'async_trait>(
        &'life0 self,
        trx: &'life1 mut TXN,
    ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn delete_in_transaction<'life0, 'life1, 'async_trait>(
        &'life0 self,
        trx: &'life1 mut TXN,
    ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn upsert_in_transaction<'life0, 'life1, 'async_trait>( &'life0 self, trx: &'life1 mut TXN, ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source

fn delete_in_transaction<'life0, 'life1, 'async_trait>( &'life0 self, trx: &'life1 mut TXN, ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementations on Foreign Types§

Source§

impl Transactional<DatabaseTransaction> for CompactTaskAssignment

Source§

fn upsert_in_transaction<'life0, 'life1, 'async_trait>( &'life0 self, trx: &'life1 mut Transaction, ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

fn delete_in_transaction<'life0, 'life1, 'async_trait>( &'life0 self, trx: &'life1 mut Transaction, ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl Transactional<DatabaseTransaction> for HummockPinnedSnapshot

Source§

fn upsert_in_transaction<'life0, 'life1, 'async_trait>( &'life0 self, trx: &'life1 mut Transaction, ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

fn delete_in_transaction<'life0, 'life1, 'async_trait>( &'life0 self, trx: &'life1 mut Transaction, ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl Transactional<DatabaseTransaction> for HummockPinnedVersion

Source§

fn upsert_in_transaction<'life0, 'life1, 'async_trait>( &'life0 self, trx: &'life1 mut Transaction, ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

fn delete_in_transaction<'life0, 'life1, 'async_trait>( &'life0 self, trx: &'life1 mut Transaction, ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl Transactional<DatabaseTransaction> for HummockVersionDelta

Source§

fn upsert_in_transaction<'life0, 'life1, 'async_trait>( &'life0 self, trx: &'life1 mut Transaction, ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

fn delete_in_transaction<'life0, 'life1, 'async_trait>( &'life0 self, trx: &'life1 mut Transaction, ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl Transactional<DatabaseTransaction> for HummockVersionStats

Source§

fn upsert_in_transaction<'life0, 'life1, 'async_trait>( &'life0 self, trx: &'life1 mut Transaction, ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

fn delete_in_transaction<'life0, 'life1, 'async_trait>( &'life0 self, trx: &'life1 mut Transaction, ) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§

Source§

impl Transactional<DatabaseTransaction> for CompactStatus

Source§

impl Transactional<DatabaseTransaction> for CompactionGroup