RawStore

Trait RawStore 

Source
pub trait RawStore<K, V> { }
Expand description

The RawStore trait is a marker trait for key-value store containers.

Implementations on Foreign Types§

Source§

impl<K, V> RawStore<K, V> for BTreeMap<K, V>

Source§

impl<K, V> RawStore<K, V> for HashMap<K, V>

Source§

impl<K, V, S> RawStore<K, V> for &S
where S: RawStore<K, V>,

Source§

impl<K, V, S> RawStore<K, V> for &mut S
where S: RawStore<K, V>,

Source§

impl<T> RawStore<usize, T> for Vec<T>

Implementors§