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