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§

source

fn savepoint(&'vtab mut self, id: c_int) -> Result<()>

source

fn release(&'vtab mut self, id: c_int) -> Result<()>

source

fn rollback_to(&'vtab mut self, id: c_int) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§