Trait StorageInterface

pub trait StorageInterface<Id, Element>:
    StorageInterfaceOpen
    + StorageInterfaceLoad<Id, Element>
    + StorageInterfaceStore<Id, Element> { }
Expand description

Provide methods to initialize, store and load single and multiple elements at iterations.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

§

impl<Id, Element, T> StorageInterface<Id, Element> for T
where T: StorageInterfaceLoad<Id, Element> + StorageInterfaceStore<Id, Element> + StorageInterfaceOpen,