Skip to main content

Storage

Trait Storage 

Source
pub trait Storage: BasicStorage + Sync {
    // Required method
    fn clone(&self) -> Box<dyn Storage>;
}
Expand description

BasicStorage that can be cloned and shared between threads.

Required Methods§

Source

fn clone(&self) -> Box<dyn Storage>

Clone.

Implementors§