pub enum LockTableType {
Read {
local: bool,
},
Write {
low_priority: bool,
},
}
Variants§
Trait Implementations§
Source§impl Clone for LockTableType
impl Clone for LockTableType
Source§fn clone(&self) -> LockTableType
fn clone(&self) -> LockTableType
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 LockTableType
impl Debug for LockTableType
Source§impl Display for LockTableType
impl Display for LockTableType
Source§impl Hash for LockTableType
impl Hash for LockTableType
Source§impl Ord for LockTableType
impl Ord for LockTableType
Source§fn cmp(&self, other: &LockTableType) -> Ordering
fn cmp(&self, other: &LockTableType) -> 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 LockTableType
impl PartialEq for LockTableType
Source§impl PartialOrd for LockTableType
impl PartialOrd for LockTableType
impl Eq for LockTableType
impl StructuralPartialEq for LockTableType
Auto Trait Implementations§
impl Freeze for LockTableType
impl RefUnwindSafe for LockTableType
impl Send for LockTableType
impl Sync for LockTableType
impl Unpin for LockTableType
impl UnwindSafe for LockTableType
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