Struct VacantEntry
pub struct VacantEntry<'a, K, V, S = DefaultHashBuilder, A: Allocator = Global> { /* private fields */ }
A view into a vacant entry in a HashMap.
It is part of the Entry enum.
Examples
use ;
let mut map = new;
let entry_v: = match map.entry ;
entry_v.insert;
assert!;
// Nonexistent key (insert and update)
match map.entry
assert!;
Implementations
impl<'a, K, V, S, A: Allocator> VacantEntry<'a, K, V, S, A>
fn key(&self) -> &KGets a reference to the key that would be used when inserting a value through the
VacantEntry.Examples
use HashMap; let mut map: = new; assert_eq!;fn into_key(self) -> KTake ownership of the key.
Examples
use ; let mut map: = new; match map.entryfn insert(self, value: V) -> &'a mut V where K: Hash, S: BuildHasher,Sets the value of the entry with the
VacantEntry's key, and returns a mutable reference to it.Examples
use HashMap; use Entry; let mut map: = new; if let Vacant = map.entry assert_eq!;fn insert_entry(self, value: V) -> OccupiedEntry<'a, K, V, S, A> where K: Hash, S: BuildHasher,Sets the value of the entry with the
VacantEntry's key, and returns anOccupiedEntry.Examples
use HashMap; use Entry; let mut map: = new; if let Vacant = map.entryfn into_map(self) -> &'a mut HashMap<K, V, S, A>Converts the
VacantEntryinto a mutable reference to the underlying map.
Trait Implementations
impl<K: Debug, V, S, A: Allocator> Debug for VacantEntry<'_, K, V, S, A>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
Auto Trait Implementations
impl<'a, K, V, S = DefaultHashBuilder, A = Global> !UnwindSafe for VacantEntry<'a, K, V, S, A>
impl<'a, K, V, S, A> Freeze for VacantEntry<'a, K, V, S, A>
where
K: Freeze,
&'a mut HashMap<K, V, S, A>: Freeze,
impl<'a, K, V, S, A> RefUnwindSafe for VacantEntry<'a, K, V, S, A>
where
K: RefUnwindSafe,
&'a mut HashMap<K, V, S, A>: RefUnwindSafe,
impl<'a, K, V, S, A> Send for VacantEntry<'a, K, V, S, A>
where
K: Send,
&'a mut HashMap<K, V, S, A>: Send,
impl<'a, K, V, S, A> Sync for VacantEntry<'a, K, V, S, A>
where
K: Sync,
&'a mut HashMap<K, V, S, A>: Sync,
impl<'a, K, V, S, A> Unpin for VacantEntry<'a, K, V, S, A>
where
K: Unpin,
&'a mut HashMap<K, V, S, A>: Unpin,
impl<'a, K, V, S, A> UnsafeUnpin for VacantEntry<'a, K, V, S, A>
where
K: UnsafeUnpin,
&'a mut HashMap<K, V, S, A>: UnsafeUnpin,
Blanket Implementations
impl<T> Any for VacantEntry<'a, K, V, S, A>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for VacantEntry<'a, K, V, S, A>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for VacantEntry<'a, K, V, S, A>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for VacantEntry<'a, K, V, S, A>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for VacantEntry<'a, K, V, S, A>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for VacantEntry<'a, K, V, S, A>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for VacantEntry<'a, K, V, S, A>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>