pub struct SetTransactionStmt {
pub local: bool,
pub isolation_level: Option<IsolationLevel>,
pub access_mode: Option<TransactionAccessMode>,
}Expand description
SET TRANSACTION statement (SQL:1999 Feature E152)
Fields§
§local: bool§isolation_level: Option<IsolationLevel>§access_mode: Option<TransactionAccessMode>Trait Implementations§
Source§impl Clone for SetTransactionStmt
impl Clone for SetTransactionStmt
Source§fn clone(&self) -> SetTransactionStmt
fn clone(&self) -> SetTransactionStmt
Returns a duplicate of the value. Read more
1.0.0 · 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 SetTransactionStmt
impl Debug for SetTransactionStmt
Source§impl PartialEq for SetTransactionStmt
impl PartialEq for SetTransactionStmt
impl StructuralPartialEq for SetTransactionStmt
Auto Trait Implementations§
impl Freeze for SetTransactionStmt
impl RefUnwindSafe for SetTransactionStmt
impl Send for SetTransactionStmt
impl Sync for SetTransactionStmt
impl Unpin for SetTransactionStmt
impl UnwindSafe for SetTransactionStmt
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