Struct VacantEntry

Source
pub struct VacantEntry<'a, K, V> {
    map: RefMut<'a, K, V>,
    hash: HashValue,
    key: K,
}
Expand description

A view into a vacant entry in an IndexMap. It is part of the Entry enum.

Fields§

§map: RefMut<'a, K, V>§hash: HashValue§key: K

Implementations§

Source§

impl<'a, K, V> VacantEntry<'a, K, V>

Source

pub fn index(&self) -> usize

Return the index where a key-value pair may be inserted.

Source

pub fn key(&self) -> &K

Gets a reference to the key that was used to find the entry.

Source

pub(crate) fn key_mut(&mut self) -> &mut K

Source

pub fn into_key(self) -> K

Takes ownership of the key, leaving the entry vacant.

Source

pub fn insert(self, value: V) -> &'a mut V

Inserts the entry’s key and the given value into the map, and returns a mutable reference to the value.

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

Source

pub fn insert_entry(self, value: V) -> OccupiedEntry<'a, K, V>

Inserts the entry’s key and the given value into the map, and returns an OccupiedEntry.

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

Source

pub fn insert_sorted(self, value: V) -> (usize, &'a mut V)
where K: Ord,

Inserts the entry’s key and the given value into the map at its ordered position among sorted keys, and returns the new index and a mutable reference to the value.

If the existing keys are not already sorted, then the insertion index is unspecified (like slice::binary_search), but the key-value pair is inserted at that position regardless.

Computes in O(n) time (average).

Source

pub fn insert_sorted_by<F>(self, value: V, cmp: F) -> (usize, &'a mut V)
where K: Ord, F: FnMut(&K, &V, &K, &V) -> Ordering,

Inserts the entry’s key and the given value into the map at its ordered position among keys sorted by cmp, and returns the new index and a mutable reference to the value.

If the existing keys are not already sorted, then the insertion index is unspecified (like slice::binary_search), but the key-value pair is inserted at that position regardless.

Computes in O(n) time (average).

Source

pub fn insert_sorted_by_key<B, F>( self, value: V, sort_key: F, ) -> (usize, &'a mut V)
where B: Ord, F: FnMut(&K, &V) -> B,

Inserts the entry’s key and the given value into the map at its ordered position using a sort-key extraction function, and returns the new index and a mutable reference to the value.

If the existing keys are not already sorted, then the insertion index is unspecified (like slice::binary_search), but the key-value pair is inserted at that position regardless.

Computes in O(n) time (average).

Source

pub fn shift_insert(self, index: usize, value: V) -> &'a mut V

Inserts the entry’s key and the given value into the map at the given index, shifting others to the right, and returns a mutable reference to the value.

Panics if index is out of bounds.

Computes in O(n) time (average).

Source

pub fn replace_index(self, index: usize) -> (K, OccupiedEntry<'a, K, V>)

Replaces the key at the given index with this entry’s key, returning the old key and an OccupiedEntry for that index.

Panics if index is out of bounds.

Computes in O(1) time (average).

Trait Implementations§

Source§

impl<K: Debug, V> Debug for VacantEntry<'_, K, V>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<K, V> MutableEntryKey for VacantEntry<'_, K, V>

Opt-in mutable access to VacantEntry keys.

See MutableEntryKey for more information.

Source§

type Key = K

Source§

fn key_mut(&mut self) -> &mut Self::Key

Gets a mutable reference to the entry’s key, either within the map if occupied, or else the new key that was used to find the entry.
Source§

impl<K, V> Sealed for VacantEntry<'_, K, V>

Auto Trait Implementations§

§

impl<'a, K, V> Freeze for VacantEntry<'a, K, V>
where K: Freeze,

§

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

§

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

§

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

§

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

§

impl<'a, K, V> !UnwindSafe for VacantEntry<'a, K, V>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.