pub trait AnimationDecoder<'a> {
    fn into_frames(self) -> Frames<'a>
Notable traits for Frames<'a>
impl<'a> Iterator for Frames<'a> type Item = ImageResult<Frame>;
; }
Expand description

AnimationDecoder trait

Required methods

Consume the decoder producing a series of frames.

Implementors