pub trait Transactional { // Required methods fn commit(self) -> Result<(), Error>; fn commit_box(self: Box<Self>) -> Result<(), Error>; }
Commits the pending state changes into the database.
The same as commit but for case if the value is boxed.
commit