pub enum RowLockStrength {
Update,
NoKeyUpdate,
Share,
KeyShare,
}
Expand description
Row-level lock strength
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RowLockStrength
impl Clone for RowLockStrength
Source§fn clone(&self) -> RowLockStrength
fn clone(&self) -> RowLockStrength
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 PartialEq for RowLockStrength
impl PartialEq for RowLockStrength
impl Copy for RowLockStrength
impl Eq for RowLockStrength
impl StructuralPartialEq for RowLockStrength
Auto Trait Implementations§
impl Freeze for RowLockStrength
impl RefUnwindSafe for RowLockStrength
impl Send for RowLockStrength
impl Sync for RowLockStrength
impl Unpin for RowLockStrength
impl UnwindSafe for RowLockStrength
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