Trait Write

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

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

Required Methods§

Source

fn write_all(&mut self, buf: &[u8]) -> Result<()>

Implementors§

Source§

impl<W> Write for W
where W: Write,