Skip to main content

Store

Trait Store 

Source
pub trait Store: StoreRead + StoreWrite { }
Expand description

The Store trait is a basic key-value store trait

Note that there is no ACID requirement in the trait.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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