Skip to main content

Store

Trait Store 

Source
pub trait Store<K, V>: StoreRead<K, V> + StoreWrite<K, V> { }
Expand description

The Store trait is a basic key-value store trait

Note that there is no ACID requirement in the trait.

Implementors§

Source§

impl<K, V, T> Store<K, V> for T
where T: StoreRead<K, V> + StoreWrite<K, V>,