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<()>
Object Safety§
This trait is not object safe.