Storage

Trait Storage 

Source
pub trait Storage: Debug {
    // Required method
    fn get(&self, key: &str) -> Option<&StorageValue>;
}

Required Methods§

Source

fn get(&self, key: &str) -> Option<&StorageValue>

Implementors§