gifski 0.8.7

pngquant-based GIF maker for nice-looking animGIFs
Documentation
use gifski::Collector;
use crate::error::*;

pub trait Source: Send {
    fn total_frames(&self) -> u64;
    fn collect(&mut self, dest: Collector) -> BinResult<()>;
}