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

A simplification of the Write trait.

Required Methods

Implementors