[][src]Trait rin::graphics::image::AnimationDecoder

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

AnimationDecoder trait

Required Methods

Important traits for Frames<'a>

Consume the decoder producing a series of frames.

Implementors

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