pub trait PersistHandler {
    fn init_from_file(path: &Path) -> bool;
    fn save_to_file(path: &Path);
}

Required Methods§

Implementors§