Enum oxipng::PngError[][src]

pub enum PngError {
    DeflatedDataTooLong(usize),
    NotPNG,
    APNGNotSupported,
    InvalidData,
    TruncatedData,
    ChunkMissing(&'static str),
    Other(Box<str>),
    // some variants omitted
}

Variants

Methods

impl PngError
[src]

Trait Implementations

impl Debug for PngError
[src]

Formats the value using the given formatter. Read more

impl Clone for PngError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for PngError
[src]

This method is soft-deprecated. Read more

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

impl Display for PngError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for PngError

impl Sync for PngError