Struct rexif::ExifError [] [src]

pub struct ExifError {
    pub kind: ExifErrorKind,
    pub extra: String,
}

EXIF parsing error type

Fields

kind: ExifErrorKind

The general kind of the error that aborted the parsing

extra: String

Extra context info about the error, when available

Trait Implementations

impl Clone for ExifError
[src]

fn clone(&self) -> ExifError

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 Error for ExifError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>
1.0.0

The lower-level cause of this error, if any. Read more

impl Debug for ExifError
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for ExifError
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.