pub trait TransactionVTab<'vtab>: UpdateVTab<'vtab> {
// Required methods
fn begin(&mut self) -> Result<()>;
fn sync(&mut self) -> Result<()>;
fn commit(&mut self) -> Result<()>;
fn rollback(&mut self) -> Result<()>;
}
Expand description
Writable virtual table instance trait with transaction support trait.
See SQLite doc
Required Methods§
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.