pub trait VTabWriteableWithTransactions<'vtab>: VTabWriteable<'vtab> {
// Required methods
fn begin(&'vtab mut self) -> Result<()>;
fn sync(&'vtab mut self) -> Result<()>;
fn commit(&'vtab mut self) -> Result<()>;
fn rollback(&'vtab mut self) -> Result<()>;
}Required Methods§
fn begin(&'vtab mut self) -> Result<()>
fn sync(&'vtab mut self) -> Result<()>
fn commit(&'vtab mut self) -> Result<()>
fn rollback(&'vtab mut self) -> Result<()>
Object Safety§
This trait is not object safe.