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.
pub trait KeyStorage: 'static {
type Key: AsRef<[u8]> + EstimateSize + Clone + Send + Sync + 'static;
type Buffer: Buffer<Sealed = Self::Key>;
}
The storage where the hash key resides in memory.