[][src]Trait purrmitive::AnimationDecoder

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

Notable traits for Frames<'a>

impl<'a> Iterator for Frames<'a> type Item = Result<Frame, ImageError>;
; }

AnimationDecoder trait

Required methods

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

Notable traits for Frames<'a>

impl<'a> Iterator for Frames<'a> type Item = Result<Frame, ImageError>;
[src]

Consume the decoder producing a series of frames.

Loading content...

Implementors

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

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

Loading content...