Enum im::hashmap::Entry[][src]

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

A handle for a key and its associated value.

Performance Note

When using an Entry, the key is only ever hashed once, when you create the Entry. Operations on an Entry will never trigger a rehash, where eg. a contains_key(key) followed by an insert(key, default_value) (the equivalent of Entry::or_insert()) would need to hash the key once for the contains_key and again for the insert. The operations generally perform similarly otherwise.

Variants

Methods

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

Insert the default value provided if there was no value already, and return a mutable reference to the value.

Insert the default value from the provided function if there was no value already, and return a mutable reference to the value.

Insert a default value if there was no value already, and return a mutable reference to the value.

Get the key for this entry.

Call the provided function to modify the value if the value exists.

Auto Trait Implementations

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

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