pub trait PixbufAnimationImpl: ObjectImpl {
    fn is_static_image(&self) -> bool { ... }
    fn static_image(&self) -> Option<Pixbuf> { ... }
    fn size(&self) -> (i32, i32) { ... }
    fn iter(&self, start_time: Duration) -> PixbufAnimationIter { ... }
}

Provided Methods§

Implementors§