pub trait Backup {
    // Required method
    fn backup(&self, str_dest: &String) -> bool;
}

Required Methods§

source

fn backup(&self, str_dest: &String) -> bool

| Back up the entire database to a file. |

Implementors§