pub trait Write {
    type Error;

    fn write_all(&mut self, buf: &[u8]) -> Result<(), Self::Error>;
}
Expand description

A type that writes byte slices.

Required Associated Types

Required Methods

Write the whole byte slice.

Implementations on Foreign Types

Implementors