pub trait Storage {
    fn get(&self, key: &str) -> Result<Option<String>>;
    fn fiber_yield(&self);
}

Required Methods

Implementors