Enum sqlparser::ast::TransactionMode
source · pub enum TransactionMode {
AccessMode(TransactionAccessMode),
IsolationLevel(TransactionIsolationLevel),
}
Variants§
AccessMode(TransactionAccessMode)
IsolationLevel(TransactionIsolationLevel)
Trait Implementations§
source§impl Clone for TransactionMode
impl Clone for TransactionMode
source§fn clone(&self) -> TransactionMode
fn clone(&self) -> TransactionMode
Returns a copy 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 TransactionMode
impl Debug for TransactionMode
source§impl Display for TransactionMode
impl Display for TransactionMode
source§impl Hash for TransactionMode
impl Hash for TransactionMode
source§impl Ord for TransactionMode
impl Ord for TransactionMode
source§fn cmp(&self, other: &TransactionMode) -> Ordering
fn cmp(&self, other: &TransactionMode) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for TransactionMode
impl PartialEq for TransactionMode
source§fn eq(&self, other: &TransactionMode) -> bool
fn eq(&self, other: &TransactionMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for TransactionMode
impl PartialOrd for TransactionMode
source§fn partial_cmp(&self, other: &TransactionMode) -> Option<Ordering>
fn partial_cmp(&self, other: &TransactionMode) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for TransactionMode
impl Eq for TransactionMode
impl StructuralEq for TransactionMode
impl StructuralPartialEq for TransactionMode
Auto Trait Implementations§
impl RefUnwindSafe for TransactionMode
impl Send for TransactionMode
impl Sync for TransactionMode
impl Unpin for TransactionMode
impl UnwindSafe for TransactionMode
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