Enum tiff::TiffUnsupportedError[][src]

pub enum TiffUnsupportedError {
    HorizontalPredictor(ColorType),
    InterpretationWithBits(PhotometricInterpretationVec<u8>),
    UnknownInterpretation,
    UnknownCompressionMethod,
    UnsupportedCompressionMethod(CompressionMethod),
    UnsupportedSampleDepth(u8),
    UnsupportedColorType(ColorType),
    UnsupportedBitsPerChannel(u8),
    UnsupportedPlanarConfig(Option<PlanarConfiguration>),
    UnsupportedDataType,
}

Variants

Trait Implementations

impl Debug for TiffUnsupportedError
[src]

Formats the value using the given formatter. Read more

impl Clone for TiffUnsupportedError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TiffUnsupportedError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for TiffUnsupportedError
[src]

impl Hash for TiffUnsupportedError
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Display for TiffUnsupportedError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for TiffUnsupportedError

impl Sync for TiffUnsupportedError