pub trait CacheValue:
Clone
+ Send
+ Sync {
// Required method
fn size(&self) -> usize;
}Expand description
Value type for entries stored in a Cache.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".