pub trait ConfigWithBackend {
    fn save(&self) -> Result<()>;
    fn load(&mut self) -> Result<()>;
    fn add_path(&mut self, source_path: Vec<PathBuf>) -> Result<()>;
    fn remove_path(&mut self, backend_path: Vec<PathBuf>) -> Result<()>;
    fn init(&self) -> Result<()>;
}

Required Methods

Implementors