pub trait DatabaseRestore: Send + Sync { fn restore_db(&self, new_db: &str) -> Result<(), Error>; }
External database restoration handler
Restart with a new backend. Takes ownership of passed database and moves it to a new location.