Struct indexmap::map::VacantEntry [−][src]
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][−]
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
impl<K: Debug, V> Debug for VacantEntry<'_, K, V>
[src][+]
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,
impl<'a, K, V> !UnwindSafe for VacantEntry<'a, K, V>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Pointable for T
[src][+]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,