Enum tiff::TiffUnsupportedError
source · #[non_exhaustive]pub enum TiffUnsupportedError {
Show 15 variants
FloatingPointPredictor(ColorType),
HorizontalPredictor(ColorType),
InconsistentBitsPerSample(Vec<u8>),
InterpretationWithBits(PhotometricInterpretation, Vec<u8>),
UnknownInterpretation,
UnknownCompressionMethod,
UnsupportedCompressionMethod(CompressionMethod),
UnsupportedSampleDepth(u8),
UnsupportedSampleFormat(Vec<SampleFormat>),
UnsupportedColorType(ColorType),
UnsupportedBitsPerChannel(u8),
UnsupportedPlanarConfig(Option<PlanarConfiguration>),
UnsupportedDataType,
UnsupportedInterpretation(PhotometricInterpretation),
UnsupportedJpegFeature(UnsupportedFeature),
}
Expand description
The Decoder does not support features required by the image.
This only captures known failures for which the standard either does not require support or an implementation has been planned but not yet completed. Some variants may become unused over time and will then get deprecated before being removed.
The list of variants may grow. Matching against this exhaustively is not covered by interface stability guarantees.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
FloatingPointPredictor(ColorType)
HorizontalPredictor(ColorType)
InconsistentBitsPerSample(Vec<u8>)
InterpretationWithBits(PhotometricInterpretation, Vec<u8>)
UnknownInterpretation
UnknownCompressionMethod
UnsupportedCompressionMethod(CompressionMethod)
UnsupportedSampleDepth(u8)
UnsupportedSampleFormat(Vec<SampleFormat>)
UnsupportedColorType(ColorType)
UnsupportedBitsPerChannel(u8)
UnsupportedPlanarConfig(Option<PlanarConfiguration>)
UnsupportedDataType
UnsupportedInterpretation(PhotometricInterpretation)
UnsupportedJpegFeature(UnsupportedFeature)
Trait Implementations§
source§impl Clone for TiffUnsupportedError
impl Clone for TiffUnsupportedError
source§fn clone(&self) -> TiffUnsupportedError
fn clone(&self) -> TiffUnsupportedError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TiffUnsupportedError
impl Debug for TiffUnsupportedError
source§impl Display for TiffUnsupportedError
impl Display for TiffUnsupportedError
source§impl From<TiffUnsupportedError> for TiffError
impl From<TiffUnsupportedError> for TiffError
source§fn from(err: TiffUnsupportedError) -> TiffError
fn from(err: TiffUnsupportedError) -> TiffError
Converts to this type from the input type.
source§impl Hash for TiffUnsupportedError
impl Hash for TiffUnsupportedError
source§impl PartialEq for TiffUnsupportedError
impl PartialEq for TiffUnsupportedError
source§fn eq(&self, other: &TiffUnsupportedError) -> bool
fn eq(&self, other: &TiffUnsupportedError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TiffUnsupportedError
impl StructuralPartialEq for TiffUnsupportedError
Auto Trait Implementations§
impl Freeze for TiffUnsupportedError
impl RefUnwindSafe for TiffUnsupportedError
impl Send for TiffUnsupportedError
impl Sync for TiffUnsupportedError
impl Unpin for TiffUnsupportedError
impl UnwindSafe for TiffUnsupportedError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more