pub trait CacheKey { // Required method fn cache_key(&self) -> u128; }
A trait for objects that can generate a unique cache key.
Returns the cache key for this object.