pub trait CloneCached<K, V> {
// Required method
fn cache_get_expired<Q>(&mut self, _key: &Q) -> (Option<V>, bool)
where K: Borrow<Q>,
Q: Hash + Eq + ?Sized;
}
Expand description
Extra cache operations for types that implement Clone
Required Methods§
Object Safety§
This trait is not object safe.