pub trait Backup { // Required method fn backup(&self) -> Result<(), FilesystemError>; }
A trait defining a way to back things up to the fs