Skip to main content

Entry

Enum Entry 

Source
pub enum Entry<'a, K, A: ?Sized + UnsafeAnyExt + 'a = dyn UnsafeAny> {
    Occupied(OccupiedEntry<'a, K, A>),
    Vacant(VacantEntry<'a, K, A>),
}
Expand description

A view onto an entry in a TypeMap.

Variants§

§

Occupied(OccupiedEntry<'a, K, A>)

A view onto an occupied entry in a TypeMap.

§

Vacant(VacantEntry<'a, K, A>)

A view onto an unoccupied entry in a TypeMap.

Implementations§

Source§

impl<'a, K: Key, A: ?Sized + UnsafeAnyExt + 'a> Entry<'a, K, A>

Source

pub fn or_insert(self, default: K::Value) -> &'a mut K::Value
where K::Value: Any + Implements<A>,

Ensures a value is in the entry by inserting the default if empty, and returns a mutable reference to the value in the entry.

Source

pub fn or_insert_with<F: FnOnce() -> K::Value>( self, default: F, ) -> &'a mut K::Value
where K::Value: Any + Implements<A>,

Ensures a value is in the entry by inserting the result of the default function if empty, and returns a mutable reference to the value in the entry.

Auto Trait Implementations§

§

impl<'a, K, A = dyn UnsafeAny> !UnwindSafe for Entry<'a, K, A>

§

impl<'a, K, A> Freeze for Entry<'a, K, A>
where OccupiedEntry<'a, K, A>: Freeze, VacantEntry<'a, K, A>: Freeze, A: ?Sized,

§

impl<'a, K, A> RefUnwindSafe for Entry<'a, K, A>
where OccupiedEntry<'a, K, A>: RefUnwindSafe, VacantEntry<'a, K, A>: RefUnwindSafe, A: ?Sized,

§

impl<'a, K, A> Send for Entry<'a, K, A>
where OccupiedEntry<'a, K, A>: Send, VacantEntry<'a, K, A>: Send, A: ?Sized,

§

impl<'a, K, A> Sync for Entry<'a, K, A>
where OccupiedEntry<'a, K, A>: Sync, VacantEntry<'a, K, A>: Sync, A: ?Sized,

§

impl<'a, K, A> Unpin for Entry<'a, K, A>
where OccupiedEntry<'a, K, A>: Unpin, VacantEntry<'a, K, A>: Unpin, A: ?Sized,

§

impl<'a, K, A> UnsafeUnpin for Entry<'a, K, A>
where OccupiedEntry<'a, K, A>: UnsafeUnpin, VacantEntry<'a, K, A>: UnsafeUnpin, A: ?Sized,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> UnsafeAny for T
where T: Any,