[][src]Trait image::AnimationDecoder

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

AnimationDecoder trait

Required methods

Important traits for Frames<'a>
fn into_frames(self) -> Frames<'a>[]

Consume the decoder producing a series of frames.

Implementors

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