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

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.

Required Associated Types

Target type for cache key

Implementors