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<'de> Deserialize<'de> for LockTableType
impl<'de> Deserialize<'de> for LockTableType
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 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
Source§impl Serialize for LockTableType
impl Serialize for LockTableType
Source§impl Visit for LockTableType
impl Visit for LockTableType
Source§impl VisitMut for LockTableType
impl VisitMut for LockTableType
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
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