pub trait VTabWriteableNestedTransactions<'vtab>: VTabWriteable<'vtab> {
// Required methods
fn savepoint(&'vtab mut self, id: c_int) -> Result<()>;
fn release(&'vtab mut self, id: c_int) -> Result<()>;
fn rollback_to(&'vtab mut self, id: c_int) -> Result<()>;
}
Required Methods§
fn savepoint(&'vtab mut self, id: c_int) -> Result<()>
fn release(&'vtab mut self, id: c_int) -> Result<()>
fn rollback_to(&'vtab mut self, id: c_int) -> 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.