pub trait CacheKey { // Required method fn to_key(&self) -> String; }
A cache key.
Keys should be unique and deterministic. The same key should always return the same value.