[][src]Enum dashmap::mapref::entry::Entry

pub enum Entry<'a, K: Eq + Hash, V> {
    Occupied(OccupiedEntry<'a, K, V>),
    Vacant(VacantEntry<'a, K, V>),
}

Variants

Occupied(OccupiedEntry<'a, K, V>)
Vacant(VacantEntry<'a, K, V>)

Methods

impl<'a, K: Eq + Hash, V> Entry<'a, K, V>[src]

pub fn and_modify(self, f: impl FnOnce(&mut V)) -> Self[src]

Apply a function to the stored value if it exists.

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

Get the key of the entry.

pub fn or_default(self) -> RefMut<'a, K, V> where
    V: Default
[src]

Return a mutable reference to the element if it exists, otherwise insert the default and return a mutable reference to that.

pub fn or_insert(self, value: V) -> RefMut<'a, K, V>[src]

Return a mutable reference to the element if it exists, otherwise a provided value and return a mutable reference to that.

pub fn or_insert_with(self, value: impl FnOnce() -> V) -> RefMut<'a, K, V>[src]

Return a mutable reference to the element if it exists, otherwise insert the result of a provided function and return a mutable reference to that.

Auto Trait Implementations

impl<'a, K, V> !RefUnwindSafe for Entry<'a, K, V>

impl<'a, K, V> Send for Entry<'a, K, V> where
    K: Send,
    V: Send

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

impl<'a, K, V> Unpin for Entry<'a, K, V> where
    K: Unpin

impl<'a, K, V> !UnwindSafe for Entry<'a, K, V>

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.