[][src]Struct evmap::ReadGuardIter

pub struct ReadGuardIter<'rg, K, V, S> where
    K: Eq + Hash,
    S: BuildHasher
{ /* fields omitted */ }

An Iterator over keys and values in the evmap.

Trait Implementations

impl<'rg, K: Debug, V: Debug, S: Debug> Debug for ReadGuardIter<'rg, K, V, S> where
    K: Eq + Hash,
    S: BuildHasher
[src]

impl<'rg, K, V, S> Iterator for ReadGuardIter<'rg, K, V, S> where
    K: Eq + Hash,
    S: BuildHasher
[src]

type Item = (&'rg K, &'rg Values<V, S>)

The type of the elements being iterated over.

Auto Trait Implementations

impl<'rg, K, V, S> RefUnwindSafe for ReadGuardIter<'rg, K, V, S> where
    K: RefUnwindSafe,
    S: RefUnwindSafe,
    V: RefUnwindSafe

impl<'rg, K, V, S> Send for ReadGuardIter<'rg, K, V, S> where
    K: Sync,
    S: Sync,
    V: Sync

impl<'rg, K, V, S> Sync for ReadGuardIter<'rg, K, V, S> where
    K: Sync,
    S: Sync,
    V: Sync

impl<'rg, K, V, S> Unpin for ReadGuardIter<'rg, K, V, S>

impl<'rg, K, V, S> UnwindSafe for ReadGuardIter<'rg, K, V, S> where
    K: RefUnwindSafe,
    S: RefUnwindSafe,
    V: RefUnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.