pub enum PostgresTableLockMode {
AccessShare,
RowShare,
RowExclusive,
ShareUpdateExclusive,
Share,
ShareRowExclusive,
Exclusive,
AccessExclusive,
}Variants§
Trait Implementations§
Source§impl Clone for PostgresTableLockMode
impl Clone for PostgresTableLockMode
Source§fn clone(&self) -> PostgresTableLockMode
fn clone(&self) -> PostgresTableLockMode
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 PostgresTableLockMode
Source§impl Debug for PostgresTableLockMode
impl Debug for PostgresTableLockMode
impl Eq for PostgresTableLockMode
Source§impl PartialEq for PostgresTableLockMode
impl PartialEq for PostgresTableLockMode
impl StructuralPartialEq for PostgresTableLockMode
Auto Trait Implementations§
impl Freeze for PostgresTableLockMode
impl RefUnwindSafe for PostgresTableLockMode
impl Send for PostgresTableLockMode
impl Sync for PostgresTableLockMode
impl Unpin for PostgresTableLockMode
impl UnsafeUnpin for PostgresTableLockMode
impl UnwindSafe for PostgresTableLockMode
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