Struct chashmap::ReadGuard [] [src]

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

A 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 ReadGuard<'a, K, V>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<'a, K, V: PartialEq> PartialEq for ReadGuard<'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 ReadGuard<'a, K, V>
[src]

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

Formats the value using the given formatter.