[][src]Trait endiannezz::Endian

pub trait Endian {
    fn write<T: Primitive, W: Write>(primitive: T, w: W) -> Result<()>;
fn read<T: Primitive, R: Read>(r: R) -> Result<T>; }

Proxy for reading and writing primitive types

Required methods

fn write<T: Primitive, W: Write>(primitive: T, w: W) -> Result<()>

fn read<T: Primitive, R: Read>(r: R) -> Result<T>

Loading content...

Implementors

impl Endian for BigEndian[src]

impl Endian for LittleEndian[src]

impl Endian for NativeEndian[src]

Loading content...