Trait binver::Writer[][src]

pub trait Writer {
    fn write(&mut self, bytes: &[u8]) -> WriteResult;
}
Expand description

Generic writer

Required methods

Write all bytes from the given slice to the writer. This function must block until all bytes have been written.

Implementations on Foreign Types

Implementors