pub trait Savepointable {
// Required method
fn savepoint(&mut self) -> Result<Savepoint<'_>>;
}Expand description
Types that can make a savepoint. This is necessary because savepoint methods take a &mut, but none of the
pub trait Savepointable {
// Required method
fn savepoint(&mut self) -> Result<Savepoint<'_>>;
}Types that can make a savepoint. This is necessary because savepoint methods take a &mut, but none of the