Enum tiff::TiffError[][src]

pub enum TiffError {
    FormatError(TiffFormatError),
    UnsupportedError(TiffUnsupportedError),
    IoError(Error),
}

Tiff error kinds.

Variants

The Image is not formatted properly

The Decoder does not support this image format

An I/O Error occurred while decoding the image

Trait Implementations

impl Debug for TiffError
[src]

Formats the value using the given formatter. Read more

impl Display for TiffError
[src]

Formats the value using the given formatter. Read more

impl Error for TiffError
[src]

This method is soft-deprecated. Read more

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

impl From<Error> for TiffError
[src]

Performs the conversion.

impl From<FromUtf8Error> for TiffError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for TiffError

impl Sync for TiffError