Enum tiff::TiffError [−][src]
pub enum TiffError {
FormatError(TiffFormatError),
UnsupportedError(TiffUnsupportedError),
IoError(Error),
LimitsExceeded,
IntSizeError,
}Tiff error kinds.
Variants
FormatError(TiffFormatError)The Image is not formatted properly.
UnsupportedError(TiffUnsupportedError)The Decoder does not support features required by the image.
IoError(Error)An I/O Error occurred while decoding the image.
The Limits of the Decoder is exceeded.
An integer conversion to or from a platform size failed, either due to limits of the platform size or limits of the format.
Trait Implementations
impl Debug for TiffError[src]
impl Display for TiffError[src]
impl Error for TiffError[src]
fn description(&self) -> &str[src]
fn cause(&self) -> Option<&dyn Error>[src]
pub fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]
pub fn backtrace(&self) -> Option<&Backtrace>[src]
impl From<Error> for TiffError[src]
impl From<FromUtf8Error> for TiffError[src]
fn from(_err: FromUtf8Error) -> TiffError[src]
impl From<TiffFormatError> for TiffError[src]
fn from(err: TiffFormatError) -> TiffError[src]
impl From<TiffUnsupportedError> for TiffError[src]
fn from(err: TiffUnsupportedError) -> TiffError[src]
impl From<TryFromIntError> for TiffError[src]
fn from(_err: TryFromIntError) -> TiffError[src]
Auto Trait Implementations
impl !RefUnwindSafe for TiffError
impl Send for TiffError
impl Sync for TiffError
impl Unpin for TiffError
impl !UnwindSafe for TiffError
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Pointable for T[src]
pub const ALIGN: usize[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T[src]
pub unsafe fn drop(ptr: usize)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,