Trait byte_io::Writeable [] [src]

pub trait Writeable: Sized {
    fn to_u8_be(_: &Self, _: &mut [u8]);
    fn to_u8_le(_: &Self, _: &mut [u8]);
}

Any type implementing Writeable can be encoded from binary.

Required Methods

Implementors