Trait picto::Decoder[][src]

pub trait Decoder<P, C> where
    P: Pixel<C>,
    C: Channel
{ fn frame(&mut self) -> Result<Buffer<P, C, Vec<C>>>; }
Expand description

An image decoder.

Required methods

Decode a frame from the stream.

Implementors