[][src]Struct dashmap::mapref::one::Ref

pub struct Ref<'a, K, V, S = FxBuildHasher> { /* 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]

Trait Implementations

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

type Target = V

The resulting type after dereferencing.

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

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

Auto Trait Implementations

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

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

impl<'a, K, V, S = BuildHasherDefault<FxHasher>> !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.