Enum tiff_encoder::Endianness
source · pub enum Endianness {
II,
MM,
}Expand description
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§
II
Intel byte order, also known as little-endian.
The byte order is always from the least significant byte to the most significant byte.
MM
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§
source§impl Clone for Endianness
impl Clone for Endianness
source§fn clone(&self) -> Endianness
fn clone(&self) -> Endianness
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more