[][src]Trait foundationdb::DatabaseTransact

pub trait DatabaseTransact: Sized {
    type Item;
    type Error: TransactError;
    type Future: Future<Output = (Self, Transaction, Result<Self::Item, Self::Error>)>;
    fn transact(self, trx: Transaction) -> Self::Future;
}

Associated Types

type Item

type Error: TransactError

type Future: Future<Output = (Self, Transaction, Result<Self::Item, Self::Error>)>

Loading content...

Required methods

fn transact(self, trx: Transaction) -> Self::Future

Loading content...

Implementors

Loading content...