Enum tsukuyomi::input::local_map::Entry[][src]

pub enum Entry<'a, T: Send + 'static> {
    Occupied(OccupiedEntry<'a, T>),
    Vacant(VacantEntry<'a, T>),
}

A view into a single entry in a LocalMap.

Variants

An occupied entry.

A vacant entry.

Methods

impl<'a, T> Entry<'a, T> where
    T: Send + 'static, 
[src]

Important traits for &'a mut R

Important traits for &'a mut R

Trait Implementations

impl<'a, T: Debug + Send + 'static> Debug for Entry<'a, T>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a, T> !Send for Entry<'a, T>

impl<'a, T> !Sync for Entry<'a, T>