pub enum TransactionIsolationLevel {
ReadUncommitted,
ReadCommitted,
RepeatableRead,
Serializable,
}
Variants§
Trait Implementations§
Source§impl Clone for TransactionIsolationLevel
impl Clone for TransactionIsolationLevel
Source§fn clone(&self) -> TransactionIsolationLevel
fn clone(&self) -> TransactionIsolationLevel
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 TransactionIsolationLevel
impl Debug for TransactionIsolationLevel
Source§impl<'de> Deserialize<'de> for TransactionIsolationLevel
impl<'de> Deserialize<'de> for TransactionIsolationLevel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for TransactionIsolationLevel
impl Display for TransactionIsolationLevel
Source§impl Hash for TransactionIsolationLevel
impl Hash for TransactionIsolationLevel
impl Eq for TransactionIsolationLevel
impl StructuralPartialEq for TransactionIsolationLevel
Auto Trait Implementations§
impl Freeze for TransactionIsolationLevel
impl RefUnwindSafe for TransactionIsolationLevel
impl Send for TransactionIsolationLevel
impl Sync for TransactionIsolationLevel
impl Unpin for TransactionIsolationLevel
impl UnwindSafe for TransactionIsolationLevel
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