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<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.