pub trait StreamWriter: Sized {
    fn write_to<W>(&self, buffer: &mut W, order: ByteOrder) -> Result<(), Error>
    where
        W: Write
; }

Required Methods§

Writes something to the specified buffer using the specified byte order.

Implementations on Foreign Types§

Implementors§