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