Storage

Trait Storage 

Source
pub trait Storage: Send {
    // Required methods
    fn save_runnable(&mut self, runnable: RunnableHolder);
    fn load_runnable(&self) -> Vec<RunnableHolder>;
}

Required Methods§

Implementors§