Enum Entry

enum Entry<'a, K, V>

A view into a single entry in a map, which may either be vacant or occupied. This enum is constructed from the entry method on Map.

Variants

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

A vacant Entry.

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

An occupied Entry.

Implementations

impl<'a, K: Ord, V> Entry<'a, K, V>

fn key(self: &Self) -> &K

Returns a reference to this entry's key.

fn or_insert(self: Self, default: V) -> &'a mut V

Ensures a value is in the entry by inserting the default if empty, and returns a mutable reference to the value in the entry.

fn or_insert_with<F>(self: Self, default: F) -> &'a mut V
where
    F: FnOnce() -> 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.

impl<'a, K, V> Freeze for Entry<'a, K, V>

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

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

impl<'a, K, V> Sync for Entry<'a, K, V>

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

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

impl<T> Any for Entry<'a, K, V>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for Entry<'a, K, V>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for Entry<'a, K, V>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> From for Entry<'a, K, V>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for Entry<'a, K, V>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for Entry<'a, K, V>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for Entry<'a, K, V>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>