Struct crossbeam::sync::ShardedLockReadGuard
source · [−]pub struct ShardedLockReadGuard<'a, T> where
T: ?Sized, { /* private fields */ }
Expand description
A guard used to release the shared read access of a ShardedLock
when dropped.
Trait Implementations
sourceimpl<'_, T> Debug for ShardedLockReadGuard<'_, T> where
T: Debug,
impl<'_, T> Debug for ShardedLockReadGuard<'_, T> where
T: Debug,
sourceimpl<'_, T> Deref for ShardedLockReadGuard<'_, T> where
T: ?Sized,
impl<'_, T> Deref for ShardedLockReadGuard<'_, T> where
T: ?Sized,
sourceimpl<'_, T> Display for ShardedLockReadGuard<'_, T> where
T: Display + ?Sized,
impl<'_, T> Display for ShardedLockReadGuard<'_, T> where
T: Display + ?Sized,
impl<'_, T> Sync for ShardedLockReadGuard<'_, T> where
T: Sync + ?Sized,
Auto Trait Implementations
impl<'a, T: ?Sized> RefUnwindSafe for ShardedLockReadGuard<'a, T>
impl<'a, T> !Send for ShardedLockReadGuard<'a, T>
impl<'a, T: ?Sized> Unpin for ShardedLockReadGuard<'a, T>
impl<'a, T: ?Sized> UnwindSafe for ShardedLockReadGuard<'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