Enum png::DecodingError [] [src]

pub enum DecodingError {
    IoError(Error),
    Format(Cow<'static, str>),
    InvalidSignature,
    CrcMismatch {
        recover: usize,
        crc_val: u32,
        crc_sum: u32,
        chunk: ChunkType,
    },
    Other(Cow<'static, str>),
    CorruptFlateStream,
}

Variants

Fields of CrcMismatch

bytes to skip to try to recover from this error

Stored CRC32 value

Calculated CRC32 sum

Trait Implementations

impl Debug for DecodingError
[src]

[src]

Formats the value using the given formatter.

impl Error for DecodingError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl Display for DecodingError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for DecodingError
[src]

[src]

Performs the conversion.

impl From<String> for DecodingError
[src]

[src]

Performs the conversion.