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