Trait sdb::Commit[][src]

pub trait Commit {
    fn commit(self) -> Result<(), Error>;
}
Expand description

Transactions that can be committed. This trait is an abstraction over mutable transactions and their subtransactions.

Required methods

Commit the transaction.

Implementations on Foreign Types

The following is very easy, we’re just extending all values of the current transaction with values of the subtransaction.

Implementors