pub trait PixbufAnimationExt: IsA<PixbufAnimation> + Sealed + 'static {
    // Provided methods
    fn height(&self) -> i32 { ... }
    fn static_image(&self) -> Option<Pixbuf> { ... }
    fn width(&self) -> i32 { ... }
    fn is_static_image(&self) -> bool { ... }
}

Provided Methods§

source

fn height(&self) -> i32

source

fn static_image(&self) -> Option<Pixbuf>

source

fn width(&self) -> i32

source

fn is_static_image(&self) -> bool

Object Safety§

This trait is not object safe.

Implementors§