Enum lru_time_cache::Entry [] [src]

pub enum Entry<'a, Key: 'a, Value: 'a> {
    Vacant(VacantEntry<'a, Key, Value>),
    Occupied(OccupiedEntry<'a, Value>),
}

A view into a single entry in an LRU cache, which may either be vacant or occupied.

Variants

A vacant Entry

An occupied Entry

Methods

impl<'a, Key: Ord + Clone, Value> Entry<'a, Key, Value>
[src]

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

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.