Enum rexif::IfdFormat [] [src]

pub enum IfdFormat {
    Unknown,
    U8,
    Ascii,
    U16,
    U32,
    URational,
    I8,
    Undefined,
    I16,
    I32,
    IRational,
    F32,
    F64,
}

Enumeration that represents the possible data formats of an IFD entry.

Any enumeration item can be cast to u16 to get the low-level format code as defined by the TIFF format.

Variants

UnknownU8AsciiU16U32URationalI8UndefinedI16I32IRationalF32F64

Trait Implementations

impl PartialEq for IfdFormat
[src]

fn eq(&self, __arg_0: &IfdFormat) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Clone for IfdFormat
[src]

fn clone(&self) -> IfdFormat

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Copy for IfdFormat
[src]