pub enum Entry<'a, K: 'a, V: 'a> { Occupied(OccupiedEntry<'a, K, V>), Vacant(VacantEntry<'a, K, V>),}Expand description
Variants§
Occupied(OccupiedEntry<'a, K, V>)
An occupied entry.
Vacant(VacantEntry<'a, K, V>)
A vacant entry.
Implementations§
Source§impl<'a, K, V>Entry<'a, K, V>
impl<'a, K, V>Entry<'a, K, V>
1.0.0 ·Sourcepub fnor_insert(self, default: V) ->&'a mut V
pub fnor_insert(self, default: V) ->&'a mut V
Ensures a value is in the entry by inserting the default if empty, and returnsa mutable reference to the value in the entry.
§Examples
1.0.0 ·Sourcepub fnor_insert_with<F:FnOnce() -> V>(self, default: F) ->&'a mut V
pub fnor_insert_with<F:FnOnce() -> V>(self, default: F) ->&'a mut V
Ensures a value is in the entry by inserting the result of the default function if empty,and returns a mutable reference to the value in the entry.
§Examples
1.50.0 ·Sourcepub fnor_insert_with_key<F:FnOnce(&K) -> V>(self, default: F) ->&'a mut V
pub fnor_insert_with_key<F:FnOnce(&K) -> V>(self, default: F) ->&'a mut V
Ensures a value is in the entry by inserting, if empty, the result of the default function.This method allows for generating key-derived values for insertion by providing the defaultfunction a reference to the key that was moved during the.entry(key) method call.
The reference to the moved key is provided so that cloning or copying the key isunnecessary, unlike with.or_insert_with(|| ... ).
§Examples
1.26.0 ·Sourcepub fnand_modify<F>(self, f: F) -> Self
pub fnand_modify<F>(self, f: F) -> Self
Provides in-place mutable access to an occupied entry before anypotential inserts into the map.
§Examples
1.83.0 ·Sourcepub fninsert_entry(self, value: V) ->OccupiedEntry<'a, K, V>
pub fninsert_entry(self, value: V) ->OccupiedEntry<'a, K, V>
Sets the value of the entry, and returns anOccupiedEntry.