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 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 ==
.impl Eq 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