Struct indexmap::map::VacantEntry [−][src]
pub struct VacantEntry<'a, K, V> { /* fields omitted */ }
A view into a vacant entry in a IndexMap
.
It is part of the Entry
enum.
Implementations
impl<'a, K, V> VacantEntry<'a, K, V>
[src]
impl<'a, K, V> VacantEntry<'a, K, V>
[src]pub fn key(&self) -> &K
[src]
Gets a reference to the key that was used to find the entry.
pub fn into_key(self) -> K
[src]
Takes ownership of the key, leaving the entry vacant.
pub fn index(&self) -> usize
[src]
Return the index where the key-value pair will be inserted.
pub fn insert(self, value: V) -> &'a mut V
[src]
Inserts the entry’s key and the given value into the map, and returns a mutable reference to the value.
Trait Implementations
Auto Trait Implementations
impl<'a, K, V> RefUnwindSafe for VacantEntry<'a, K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, K, V> Send for VacantEntry<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V> Sync for VacantEntry<'a, K, V> where
K: Sync,
V: Sync,
K: Sync,
V: Sync,
impl<'a, K, V> Unpin for VacantEntry<'a, K, V> where
K: Unpin,
K: Unpin,