pub trait Transactional {
    fn commit(self) -> Result<(), Error>;
    fn commit_box(self: Box<Self>) -> Result<(), Error>;
}

Required Methods§

Commits the pending state changes into the database.

The same as commit but for case if the value is boxed.

Implementors§