Enum indexmap::map::Entry [] [src]

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

Entry for an existing key-value pair or a vacant location to insert one.

Variants

Existing slot with equivalent key.

Vacant slot (no equivalent key in the map).

Methods

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

[src]

Computes in O(1) time (amortized average).

[src]

Computes in O(1) time (amortized average).

[src]

[src]

Return the index where the key-value pair exists or will be inserted.

Trait Implementations

Auto Trait Implementations

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

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