pub struct StorageMapGuard<'a, L: 'a + RawRwLock, V: 'a> { /* private fields */ }
Expand description
An element guard that releases the lock when dropped.
Trait Implementations§
Source§impl<'a, L: RawRwLock, V> Deref for StorageMapGuard<'a, L, V>
impl<'a, L: RawRwLock, V> Deref for StorageMapGuard<'a, L, V>
Auto Trait Implementations§
impl<'a, L, V> Freeze for StorageMapGuard<'a, L, V>
impl<'a, L, V> RefUnwindSafe for StorageMapGuard<'a, L, V>where
L: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, L, V> Send for StorageMapGuard<'a, L, V>
impl<'a, L, V> Sync for StorageMapGuard<'a, L, V>
impl<'a, L, V> Unpin for StorageMapGuard<'a, L, V>
impl<'a, L, V> UnwindSafe for StorageMapGuard<'a, L, V>where
L: RefUnwindSafe,
V: RefUnwindSafe,
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