Enum png::Decoded [] [src]

pub enum Decoded<'a> {
    Nothing,
    Header(u32u32BitDepthColorTypebool),
    ChunkBegin(u32ChunkType),
    ChunkComplete(u32ChunkType),
    PixelDimensions(PixelDimensions),
    AnimationControl(AnimationControl),
    FrameControl(&'a FrameControl),
    ImageData(&'a [u8]),
    PartialChunk(ChunkType&'a [u8]),
    ImageEnd,
}

Result of the decoding process

Variants

Nothing decoded yet

Decoded raw image data.

Trait Implementations

impl<'a> Debug for Decoded<'a>
[src]

Formats the value using the given formatter.