pub enum DecodingError {
CodeBlockDecodeFailure,
TooManyBitplanes,
TooManyCodingPasses,
InvalidBitplaneCount,
InvalidPrecinct,
InvalidProgressionIterator,
UnexpectedEof,
}Expand description
Errors related to decoding operations.
Variants§
CodeBlockDecodeFailure
An error occurred while decoding a code-block.
TooManyBitplanes
Number of bitplanes in a code-block is too large.
TooManyCodingPasses
A code-block contains too many coding passes.
InvalidBitplaneCount
Invalid number of bitplanes in a code-block.
InvalidPrecinct
A precinct was invalid.
InvalidProgressionIterator
A progression iterator ver invalid.
UnexpectedEof
Unexpected end of data.
Trait Implementations§
Source§impl Clone for DecodingError
impl Clone for DecodingError
Source§fn clone(&self) -> DecodingError
fn clone(&self) -> DecodingError
Returns a duplicate 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 DecodingError
impl Debug for DecodingError
Source§impl Display for DecodingError
impl Display for DecodingError
Source§impl Error for DecodingError
impl Error for DecodingError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<DecodingError> for DecodeError
impl From<DecodingError> for DecodeError
Source§fn from(e: DecodingError) -> Self
fn from(e: DecodingError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DecodingError
impl PartialEq for DecodingError
impl Copy for DecodingError
impl Eq for DecodingError
impl StructuralPartialEq for DecodingError
Auto Trait Implementations§
impl Freeze for DecodingError
impl RefUnwindSafe for DecodingError
impl Send for DecodingError
impl Sync for DecodingError
impl Unpin for DecodingError
impl UnwindSafe for DecodingError
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