Trait sanakirja::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.

Implementors