pub trait RadStorage {
    fn update(&mut self, args: &Vec<String>) -> StorageResult<()>;
    fn extract(
        &mut self,
        serialize: bool
    ) -> StorageResult<Option<StorageOutput>>; }

Required Methods

Implementors