pub trait DoCleanUp {
    fn do_cleanup(&self, path_to_remove: impl AsRef<Path>) -> Result<Clean>;
}

Required methods

Implementors