pub trait PixbufAnimationExt {
// Required methods
fn get_width(&self) -> i32;
fn get_height(&self) -> i32;
fn get_iter(&self, start_time: TimeVal) -> PixbufAnimationIter;
fn is_static_image(&self) -> bool;
fn get_static_image(&self) -> Option<Pixbuf>;
}