Trait AnimationDecoder

pub trait AnimationDecoder<'a> {
    // Required method
    fn into_frames(self) -> Frames<'a> ;
}
Available on crate feature dep_image only.
Expand description

AnimationDecoder trait

Required Methods§

fn into_frames(self) -> Frames<'a>

Consume the decoder producing a series of frames.

Implementors§

§

impl<'a, R> AnimationDecoder<'a> for ApngDecoder<R>
where R: BufRead + Seek + 'a,