[][src]Enum hashlink::linked_hash_map::Entry

pub enum Entry<'a, K, V, S> {
    Occupied(OccupiedEntry<'a, K, V>),
    Vacant(VacantEntry<'a, K, V, S>),
}

Variants

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

Methods

impl<'a, K, V, S> Entry<'a, K, V, S>[src]

pub fn or_insert(self, default: V) -> &'a mut V where
    K: Hash,
    S: BuildHasher
[src]

If this entry is vacant, inserts a new entry with the given value and returns a reference to it.

If this entry is occupied, this method moves the occupied entry to the back of the internal linked list and returns a reference to the existing value.

pub fn or_insert_with<F: FnOnce() -> V>(self, default: F) -> &'a mut V where
    K: Hash,
    S: BuildHasher
[src]

Similar to Entry::or_insert, but accepts a function to construct a new value if this entry is vacant.

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

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

Trait Implementations

impl<'_, K: Debug, V: Debug, S> Debug for Entry<'_, K, V, S>[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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.

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

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

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