pub trait VTabWriteableNestedTransactions<'vtab>: VTabWriteable<'vtab> {
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<()>;
}