[][src]Struct waitmap::Ref

pub struct Ref<'a, K, V, S> { /* fields omitted */ }

Methods

impl<'a, K: Eq + Hash, V, S: BuildHasher> Ref<'a, K, V, S>[src]

pub fn key(&self) -> &K[src]

pub fn value(&self) -> &V[src]

pub fn pair(&self) -> (&K, &V)[src]

Auto Trait Implementations

impl<'a, K, V, S> !RefUnwindSafe for Ref<'a, K, V, S>

impl<'a, K, V, S> Send for Ref<'a, K, V, S> where
    K: Eq + Hash + Send,
    S: BuildHasher,
    V: Send

impl<'a, K, V, S> Sync for Ref<'a, K, V, S> where
    K: Eq + Hash + Send + Sync,
    S: BuildHasher,
    V: Send + Sync

impl<'a, K, V, S> Unpin for Ref<'a, K, V, S>

impl<'a, K, V, S> !UnwindSafe for Ref<'a, K, V, S>

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<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.