Enum endianness::ByteOrder [] [src]

pub enum ByteOrder {
    LittleEndian,
    BigEndian,
}

The 'ByteOrder' type. It represents the order of bytes in a stream we read from.

Variants

LittleEndian

Intel byte order

BigEndian

Motorola byte order

Trait Implementations

Derived Implementations

impl Clone for ByteOrder

fn clone(&self) -> ByteOrder

fn clone_from(&mut self, source: &Self)

impl Copy for ByteOrder

impl Debug for ByteOrder

fn fmt(&self, __arg_0: &mut Formatter) -> Result