pub trait DiskWritable {
    fn write_to_disk(self, filename: &str) -> Result<(), String>;
}

Required Methods

Implementors