Trait endiannezz::Io[][src]

pub trait Io: Sized {
    fn write<W: Write>(&self, w: W) -> Result<()>;
fn read<R: Read>(r: R) -> Result<Self>; }
Expand description

Allows the type to be encoded/decoded using binary format

Required methods

Implementations on Foreign Types

Binary representation of a bool

Implementors