[][src]Enum rexif::IfdFormat

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

Unknown
U8
Ascii
U16
U32
URational
I8
Undefined
I16
I32
IRational
F32
F64

Trait Implementations

impl Clone for IfdFormat[src]

impl Copy for IfdFormat[src]

impl Debug for IfdFormat[src]

impl PartialEq<IfdFormat> for IfdFormat[src]

impl StructuralPartialEq for IfdFormat[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.