Enum exif::Error [] [src]

pub enum Error {
    InvalidFormat(&'static str),
    Io(Error),
    NotFound(&'static str),
}

An error type returned when parsing Exif data.

Variants

Input data was malformed or truncated.

Input data could not be read due to an I/O error and a std::io::Error value is associated with this variant.

Exif attribute information was not found.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<Error> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter.

impl Error for Error
[src]

A short description of the error. Read more

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