Struct chashmap::WriteGuard [] [src]

pub struct WriteGuard<'a, K: 'a, V: 'a> { /* fields omitted */ }

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

impl<'a, K, V> Deref for WriteGuard<'a, K, V>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<'a, K, V> DerefMut for WriteGuard<'a, K, V>
[src]

The method called to mutably dereference a value

impl<'a, K, V: PartialEq> PartialEq for WriteGuard<'a, K, V>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a, K, V: Eq> Eq for WriteGuard<'a, K, V>
[src]

impl<'a, K: Debug, V: Debug> Debug for WriteGuard<'a, K, V>
[src]

Formats the value using the given formatter.