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<TransactionMode> for TransactionMode
impl PartialEq<TransactionMode> for TransactionMode
source§fn eq(&self, other: &TransactionMode) -> bool
fn eq(&self, other: &TransactionMode) -> bool
source§impl PartialOrd<TransactionMode> for TransactionMode
impl PartialOrd<TransactionMode> 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 more