[][src]Struct multimap::VacantEntry

pub struct VacantEntry<'a, K: 'a, V: 'a> { /* fields omitted */ }

A view into a single empty location in a MultiMap.

Methods

impl<'a, K: 'a, V: 'a> VacantEntry<'a, K, V>[src]

pub fn insert(self, value: V) -> &'a mut V[src]

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

pub fn insert_vec(self, values: Vec<V>) -> &'a mut Vec<V>[src]

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

Auto Trait Implementations

impl<'a, K, V> Send for VacantEntry<'a, K, V> where
    K: Send,
    V: Send

impl<'a, K, V> Sync for VacantEntry<'a, K, V> where
    K: Sync,
    V: Sync

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]