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

AnimationDecoder trait

Required Methods

Consume the decoder producing a series of frames.

Implementors