Enum imagemeta::exif::EntryData [] [src]

pub enum EntryData {
    Byte(Vec<u8>),
    Ascii(String),
    UShort(Vec<u16>),
    ULong(Vec<u32>),
    URational(Vec<u64>),
    SignedByte(Vec<i8>),
    Undef(Vec<u8>),
    SShort(Vec<i16>),
    SLong(Vec<i32>),
    SRational(Vec<i64>),
    Float32(Vec<f32>),
    Float64(Vec<f64>),
}

Data associated with an Entry

Variants

Trait Implementations

impl Clone for EntryData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EntryData
[src]

Formats the value using the given formatter.