Trait RawStore

Source
pub trait RawStore<K, V>: RawContainer<Item = V> { }
Expand description

RawStore is a trait extending the RawContainer trait to establish a common interface for all key-value stores.

Implementations on Foreign Types§

Source§

impl<K, V> RawStore<K, V> for BTreeMap<K, V>
where K: Ord,

Source§

impl<K, V, S> RawStore<K, V> for HashMap<K, V, S>
where K: Eq + Hash, S: BuildHasher,

Implementors§