Skip to main content

Store

Trait Store 

Source
pub trait Store: Reader + Writer { }
Expand description

Combined read/write at the Core level.

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: Reader + Writer,