Struct chashmap_serde::WriteGuard
source · [−]pub struct WriteGuard<'a, K: 'a, V: 'a, S> { /* private fields */ }Expand description
A mutable RAII guard for reading an entry of a hash map.
This is an access type dereferencing to the inner value of the entry. It will handle unlocking on drop.
Trait Implementations
sourceimpl<'a, K: Debug, V: Debug, S> Debug for WriteGuard<'a, K, V, S>
impl<'a, K: Debug, V: Debug, S> Debug for WriteGuard<'a, K, V, S>
sourceimpl<'a, K, V, S> Deref for WriteGuard<'a, K, V, S>
impl<'a, K, V, S> Deref for WriteGuard<'a, K, V, S>
sourceimpl<'a, K, V, S> DerefMut for WriteGuard<'a, K, V, S>
impl<'a, K, V, S> DerefMut for WriteGuard<'a, K, V, S>
sourceimpl<'a, K, V: PartialEq, S> PartialEq<WriteGuard<'a, K, V, S>> for WriteGuard<'a, K, V, S>
impl<'a, K, V: PartialEq, S> PartialEq<WriteGuard<'a, K, V, S>> for WriteGuard<'a, K, V, S>
impl<'a, K, V: Eq, S> Eq for WriteGuard<'a, K, V, S>
Auto Trait Implementations
impl<'a, K, V, S> !RefUnwindSafe for WriteGuard<'a, K, V, S>
impl<'a, K, V, S> !Send for WriteGuard<'a, K, V, S>
impl<'a, K, V, S> Sync for WriteGuard<'a, K, V, S>where
K: Send + Sync,
S: Send + Sync,
V: Send + Sync,
impl<'a, K, V, S> Unpin for WriteGuard<'a, K, V, S>
impl<'a, K, V, S> !UnwindSafe for WriteGuard<'a, K, V, S>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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