#[repr(i32)]pub enum TxIsolation {
ReadCommitted = 0,
RepeatableRead = 1,
Serializable = 2,
}Variants§
Trait Implementations§
Source§impl Clone for TxIsolation
impl Clone for TxIsolation
Source§fn clone(&self) -> TxIsolation
fn clone(&self) -> TxIsolation
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 moreimpl Copy for TxIsolation
Source§impl Debug for TxIsolation
impl Debug for TxIsolation
impl Eq for TxIsolation
Source§impl PartialEq for TxIsolation
impl PartialEq for TxIsolation
impl StructuralPartialEq for TxIsolation
Auto Trait Implementations§
impl Freeze for TxIsolation
impl RefUnwindSafe for TxIsolation
impl Send for TxIsolation
impl Sync for TxIsolation
impl Unpin for TxIsolation
impl UnsafeUnpin for TxIsolation
impl UnwindSafe for TxIsolation
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