pub enum TransactionModifier {
Deferred,
Immediate,
Exclusive,
}
Expand description
SQLite specific syntax
Variants§
Trait Implementations§
source§impl Clone for TransactionModifier
impl Clone for TransactionModifier
source§fn clone(&self) -> TransactionModifier
fn clone(&self) -> TransactionModifier
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 TransactionModifier
impl Debug for TransactionModifier
source§impl Display for TransactionModifier
impl Display for TransactionModifier
source§impl Hash for TransactionModifier
impl Hash for TransactionModifier
source§impl Ord for TransactionModifier
impl Ord for TransactionModifier
source§fn cmp(&self, other: &TransactionModifier) -> Ordering
fn cmp(&self, other: &TransactionModifier) -> 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 TransactionModifier
impl PartialEq for TransactionModifier
source§fn eq(&self, other: &TransactionModifier) -> bool
fn eq(&self, other: &TransactionModifier) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for TransactionModifier
impl PartialOrd for TransactionModifier
source§fn partial_cmp(&self, other: &TransactionModifier) -> Option<Ordering>
fn partial_cmp(&self, other: &TransactionModifier) -> 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 TransactionModifier
impl Eq for TransactionModifier
impl StructuralEq for TransactionModifier
impl StructuralPartialEq for TransactionModifier
Auto Trait Implementations§
impl RefUnwindSafe for TransactionModifier
impl Send for TransactionModifier
impl Sync for TransactionModifier
impl Unpin for TransactionModifier
impl UnwindSafe for TransactionModifier
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