Enum tiff_encoder::Endianness[][src]

pub enum Endianness {
    II,
    MM,
}

The byte order used within the TIFF file.

There are two possible values: II (little-endian or Intel format) and MM (big-endian or Motorola format).

Variants

Intel byte order, also known as little-endian.

The byte order is always from the least significant byte to the most significant byte.

Motorola byte order, also known as big-endian.

The byte order is always from the most significant byte to the least significant byte.

Trait Implementations

impl Clone for Endianness
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Endianness
[src]

Auto Trait Implementations

impl Send for Endianness

impl Sync for Endianness