[−][src]Enum dashmap::mapref::entry::Entry   
Variants
Occupied(OccupiedEntry<'a, K, V, S>)Vacant(VacantEntry<'a, K, V, S>)Implementations
impl<'a, K: Eq + Hash, V, S: BuildHasher> Entry<'a, K, V, S>[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, S> where
    V: Default, [src]
V: Default,
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, S>[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, S>[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.
pub fn or_try_insert_with<E>(
    self, 
    value: impl FnOnce() -> Result<V, E>
) -> Result<RefMut<'a, K, V, S>, E>[src]
self,
value: impl FnOnce() -> Result<V, E>
) -> Result<RefMut<'a, K, V, S>, E>
Auto Trait Implementations
impl<'a, K, V, S = RandomState> !RefUnwindSafe for Entry<'a, K, V, S>
impl<'a, K, V, S> Send for Entry<'a, K, V, S> where
    K: Eq + Hash + Send,
    S: BuildHasher,
    V: Send, 
K: Eq + Hash + Send,
S: BuildHasher,
V: Send,
impl<'a, K, V, S> Sync for Entry<'a, K, V, S> where
    K: Eq + Hash + Send + Sync,
    S: BuildHasher,
    V: Send + Sync, 
K: Eq + Hash + Send + Sync,
S: BuildHasher,
V: Send + Sync,
impl<'a, K, V, S> Unpin for Entry<'a, K, V, S> where
    K: Unpin, 
K: Unpin,
impl<'a, K, V, S = RandomState> !UnwindSafe for Entry<'a, K, V, S>
Blanket Implementations
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,