pub trait Dumpable {
    fn dump(&self) -> Value;
    fn load(&mut self, data: Value) -> Result<()>;
}

Required Methods

Implementors