Enum exif::Error
[−]
[src]
pub enum Error {
InvalidFormat(&'static str),
Io(Error),
NotFound(&'static str),
}An error type returned when parsing Exif data.
Variants
InvalidFormat(&'static str)Input data was malformed or truncated.
Io(Error)Input data could not be read due to an I/O error and
a std::io::Error value is associated with this variant.
NotFound(&'static str)Exif attribute information was not found.