pub trait KeyValueDbTraitTransactionalDyn: KeyValueDbAsAnyTrait {
    // Required method
    fn start_transaction_dyn(
        &self,
        immediate_write: bool
    ) -> Result<Box<dyn KeyValueDbTransactionTrait<ValueType = Self::ValueType>>>;
}

Required Methods§

source

fn start_transaction_dyn( &self, immediate_write: bool ) -> Result<Box<dyn KeyValueDbTransactionTrait<ValueType = Self::ValueType>>>

Implementors§