pub struct RollbackStatement {
pub to_savepoint: Option<String>,
}Expand description
A ROLLBACK statement.
Fields§
§to_savepoint: Option<String>Optional savepoint name to roll back to.
Trait Implementations§
Source§impl Clone for RollbackStatement
impl Clone for RollbackStatement
Source§fn clone(&self) -> RollbackStatement
fn clone(&self) -> RollbackStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RollbackStatement
impl Debug for RollbackStatement
Source§impl Display for RollbackStatement
impl Display for RollbackStatement
impl Eq for RollbackStatement
Source§impl PartialEq for RollbackStatement
impl PartialEq for RollbackStatement
impl StructuralPartialEq for RollbackStatement
Auto Trait Implementations§
impl Freeze for RollbackStatement
impl RefUnwindSafe for RollbackStatement
impl Send for RollbackStatement
impl Sync for RollbackStatement
impl Unpin for RollbackStatement
impl UnsafeUnpin for RollbackStatement
impl UnwindSafe for RollbackStatement
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more