[][src]Struct chashmap::ReadGuard

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

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

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]

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

type Target = V

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a, K, V> Send for ReadGuard<'a, K, V> where
    K: Send + Sync,
    V: Send + Sync

impl<'a, K, V> Sync for ReadGuard<'a, K, V> where
    K: Send + Sync,
    V: Send + Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T[src]