pub trait HostFileWrite { // Required method fn write_all(&mut self, buf: &[u8]) -> Result<(), IoError>; }
Host file writer.
Fully write the provided buffer to the output stream.