Trait any_cache::CacheKey [] [src]

pub trait CacheKey: 'static + Hash {
    type Target;
}

A key that is usable in a cache.

Cache keys are required to declare the type of values they reference. This is needed to implement type-level namespacing.

Associated Types

Implementors