Struct crossbeam::sync::ShardedLockWriteGuard
source · [−]pub struct ShardedLockWriteGuard<'a, T> where
T: ?Sized, { /* private fields */ }
Expand description
A guard used to release the exclusive write access of a ShardedLock
when dropped.
Trait Implementations
sourceimpl<'_, T> Debug for ShardedLockWriteGuard<'_, T> where
T: Debug,
impl<'_, T> Debug for ShardedLockWriteGuard<'_, T> where
T: Debug,
sourceimpl<'_, T> Deref for ShardedLockWriteGuard<'_, T> where
T: ?Sized,
impl<'_, T> Deref for ShardedLockWriteGuard<'_, T> where
T: ?Sized,
sourceimpl<'_, T> DerefMut for ShardedLockWriteGuard<'_, T> where
T: ?Sized,
impl<'_, T> DerefMut for ShardedLockWriteGuard<'_, T> where
T: ?Sized,
sourceimpl<'_, T> Display for ShardedLockWriteGuard<'_, T> where
T: Display + ?Sized,
impl<'_, T> Display for ShardedLockWriteGuard<'_, T> where
T: Display + ?Sized,
sourceimpl<'_, T> Drop for ShardedLockWriteGuard<'_, T> where
T: ?Sized,
impl<'_, T> Drop for ShardedLockWriteGuard<'_, T> where
T: ?Sized,
impl<'_, T> Sync for ShardedLockWriteGuard<'_, T> where
T: Sync + ?Sized,
Auto Trait Implementations
impl<'a, T: ?Sized> RefUnwindSafe for ShardedLockWriteGuard<'a, T>
impl<'a, T> !Send for ShardedLockWriteGuard<'a, T>
impl<'a, T: ?Sized> Unpin for ShardedLockWriteGuard<'a, T>
impl<'a, T: ?Sized> UnwindSafe for ShardedLockWriteGuard<'a, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more