pub trait FileWriter: Write + Send { // Required method fn sync_all(&self) -> Result<()>; }
A writable file handle
Sync all data to disk