pub enum SqlIsolation {
Default,
ReadCommitted,
RepeatableRead,
Serializable,
}Variants§
Trait Implementations§
Source§impl Clone for SqlIsolation
impl Clone for SqlIsolation
Source§fn clone(&self) -> SqlIsolation
fn clone(&self) -> SqlIsolation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SqlIsolation
impl Debug for SqlIsolation
Source§impl<'de> Deserialize<'de> for SqlIsolation
impl<'de> Deserialize<'de> for SqlIsolation
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 PartialEq for SqlIsolation
impl PartialEq for SqlIsolation
Source§fn eq(&self, other: &SqlIsolation) -> bool
fn eq(&self, other: &SqlIsolation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SqlIsolation
impl Serialize for SqlIsolation
impl Eq for SqlIsolation
impl StructuralPartialEq for SqlIsolation
Auto Trait Implementations§
impl Freeze for SqlIsolation
impl RefUnwindSafe for SqlIsolation
impl Send for SqlIsolation
impl Sync for SqlIsolation
impl Unpin for SqlIsolation
impl UnsafeUnpin for SqlIsolation
impl UnwindSafe for SqlIsolation
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