pub trait SaveTo { // Required method fn save_to<P>(&self, output_dir: P) -> Result<(), Error> where P: AsRef<Path>; }