pub trait Write {
    fn write_all(&mut self, buf: &[u8]) -> Result<()>;
}
Expand description

A rough approximation of std::io::Write.

Required Methods

Implementors