[][src]Trait image::AnimationDecoder

pub trait AnimationDecoder<'a> {
    fn into_frames(self) -> Frames<'a>;
}

AnimationDecoder trait

Required methods

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

Consume the decoder producing a series of frames.

Loading content...

Implementors

impl<'a, R: Read + 'a> AnimationDecoder<'a> for GifDecoder<R>[src]

Loading content...