pub trait AnimationDecoder<'a> {
    // Required method
    fn into_frames(self) -> Frames<'a> ;
}
Expand description

AnimationDecoder trait

Required Methods§

source

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

Consume the decoder producing a series of frames.

Implementors§

source§

impl<'a, R: 'a + Read + Seek> AnimationDecoder<'a> for WebPDecoder<R>

Available on crate feature webp only.
source§

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

Available on crate feature gif only.
source§

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

Available on crate feature png only.