pub trait WithMeta<K: Eq + Hash + Clone + Send, V: Clone + Sized + Send, E: Clone + Sized + Send + Debug, B: CacheBacking<K, CacheEntry<V, E>>> {
    type Type;

    fn with_meta(self, meta: Option<B::Meta>) -> Self::Type;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors