Struct rexif::ExifData [] [src]

pub struct ExifData {
    pub mime: String,
    pub entries: Vec<ExifEntry>,
}

Top-level structure that contains all parsed metadata inside an image

Fields

mime: String

MIME type of the parsed image. It may be "image/jpeg", "image/tiff", or empty if unrecognized.

entries: Vec<ExifEntry>

Collection of EXIF entries found in the image

Trait Implementations

impl Clone for ExifData
[src]

fn clone(&self) -> ExifData

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