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
IIIntel byte order, also known as little-endian.
The byte order is always from the least significant byte to the most significant byte.
MMMotorola 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]
impl Clone for Endiannessfn clone(&self) -> Endianness[src]
fn clone(&self) -> EndiannessReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for Endianness[src]
impl Copy for EndiannessAuto Trait Implementations
impl Send for Endianness
impl Send for Endiannessimpl Sync for Endianness
impl Sync for Endianness