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

fn to_u8_be(&Self, &mut [u8])

fn to_u8_le(&Self, &mut [u8])

Implementors