pub trait Save {
    fn save(&self, path: &str) -> Result<(), Error>;
}
Expand description

enables the ability to save data when implemented.

Required methods

Implementations on Foreign Types

Implementors