Trait PixbufAnimationImpl

Source
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 { ... }
}

Provided Methods§

Source

fn is_static_image(&self) -> bool

Source

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

Source

fn size(&self) -> (i32, i32)

Source

fn iter(&self, start_time: SystemTime) -> PixbufAnimationIter

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§