Skip to main content

FileWriter

Trait FileWriter 

Source
pub trait FileWriter: Write + Send {
    // Required method
    fn sync_all(&self) -> Result<()>;
}
Expand description

A writable file handle

Required Methods§

Source

fn sync_all(&self) -> Result<()>

Sync all data to disk

Implementors§