Struct VacantEntry
pub struct VacantEntry<'a> { /* private fields */ }
A vacant Entry. It is part of the Entry enum.
Implementations
impl<'a> VacantEntry<'a>
fn key(&self) -> &StringGets a reference to the key that would be used when inserting a value through the VacantEntry.
Examples
use Entry; let mut map = new; match map.entryfn insert(self, value: Value) -> &'a mut ValueSets the value of the entry with the VacantEntry's key, and returns a mutable reference to it.
Examples
# use json; # use Entry; let mut map = new; match map.entry
Auto Trait Implementations
impl<'a> !UnwindSafe for VacantEntry<'a>
impl<'a> Freeze for VacantEntry<'a>
impl<'a> RefUnwindSafe for VacantEntry<'a>
impl<'a> Send for VacantEntry<'a>
impl<'a> Sync for VacantEntry<'a>
impl<'a> Unpin for VacantEntry<'a>
impl<'a> UnsafeUnpin for VacantEntry<'a>
Blanket Implementations
impl<T> Any for VacantEntry<'a>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for VacantEntry<'a>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for VacantEntry<'a>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for VacantEntry<'a>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for VacantEntry<'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>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for VacantEntry<'a>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>