Trait fedimint_core::db::IRawDatabaseTransaction

source ·
pub trait IRawDatabaseTransaction: MaybeSend + IDatabaseTransactionOps {
    // Required method
    fn commit_tx<'async_trait>(
        self,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait;
}
Expand description

Raw database transaction (e.g. rocksdb implementation)

Required Methods§

source

fn commit_tx<'async_trait>( self, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,

Implementors§