[][src]Enum non_empty_collections::index_map::Entry

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

A map's entry.

Variants

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

An occupied entry.

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

A vacant (empty) entry.

Methods

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

pub fn or_insert(self, value: V) -> &'a mut V[src]

Returns a mutable reference to a value if the entry exists, or creates a new entry using a given closure if it doesn't exist yet and returns a reference to a newly created entry's value.

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

Returns a mutable reference to a value if the entry exists, or creates a new entry with a given value if it doesn't exist yet and returns a reference to a newly created entry's value.

Auto Trait Implementations

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

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

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

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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