pub trait KeyValueStore<K, V> {
type Entry<'a>: KeyValueEntry<'a, Key = K, Value = V>
where Self: 'a;
}Expand description
The KeyValueStore trait is used to define a key-value store container.
Required Associated Types§
type Entry<'a>: KeyValueEntry<'a, Key = K, Value = V> where Self: 'a
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.