pub trait KeyStorage: 'static {
type Key: AsRef<[u8]> + EstimateSize + Clone + Send + Sync + 'static;
type Buffer: Buffer<Sealed = Self::Key>;
}Expand description
The storage where the hash key resides in memory.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".