pub trait CacheStore {
type Key;
type Value;
// Required methods
fn get(&self, key: impl Borrow<Self::Key>) -> Option<Self::Value>;
fn set(
&mut self,
key: impl Borrow<Self::Key>,
value: impl Borrow<Self::Value>,
);
// Provided method
fn exists(&self, key: impl Borrow<Self::Key>) -> bool { ... }
}
Expand description
Trait for a infallible cache store
Required Associated Types§
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.