Struct cached::stores::TimedCache [] [src]

pub struct TimedCache<K: Hash + Eq, V> { /* fields omitted */ }

Cache store bound by time - Values are timestamped when inserted and are expired on attempted retrieval.

Methods

impl<K: Hash + Eq, V> TimedCache<K, V>
[src]

Creates a new TimedCache with a specified lifespan

Creates a new TimedCache with a specified lifespan and cache-store with the specified pre-allocated capacity

Trait Implementations

impl<K: Hash + Eq, V> Cached<K, V> for TimedCache<K, V>
[src]