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) -> &String

Gets a reference to the key that would be used when inserting a value through the VacantEntry.

Examples

use serde_json::map::Entry;

let mut map = serde_json::Map::new();

match map.entry("serde") {
    Entry::Vacant(vacant) => {
        assert_eq!(vacant.key(), &"serde");
    }
    Entry::Occupied(_) => unimplemented!(),
}
fn insert(self, value: Value) -> &'a mut Value

Sets the value of the entry with the VacantEntry's key, and returns a mutable reference to it.

Examples

# use serde_json::json;
#
use serde_json::map::Entry;

let mut map = serde_json::Map::new();

match map.entry("serde") {
    Entry::Vacant(vacant) => {
        vacant.insert(json!("hoho"));
    }
    Entry::Occupied(_) => unimplemented!(),
}

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) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for VacantEntry<'a> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses 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>