Trait custom_print::WriteBytes[][src]

pub trait WriteBytes {
    type Output;
    fn write_bytes(&mut self, buf: &[u8]) -> Self::Output;
}
Expand description

A trait for objects which can write bytes returning a specific output.

This trait is used by IoWriter.

Associated Types

The resulting type after writing.

Required methods

Performs byte writing.

Implementors