pub trait CacheObject {
type Key: Serialize + DeserializeOwned;
}Expand description
A trait for types that can be used as a cache object.
Required Associated Types§
Sourcetype Key: Serialize + DeserializeOwned
type Key: Serialize + DeserializeOwned
The cursor key type for the cache object.