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.
pub trait Store<K, V>: StoreRead<K, V> + StoreWrite<K, V> { }The Store trait is a basic key-value store trait
Note that there is no ACID requirement in the trait.