Trait PixbufAnimationIterImpl

Source
pub trait PixbufAnimationIterImpl: ObjectImpl {
    // Provided methods
    fn delay_time(&self) -> Option<Duration> { ... }
    fn pixbuf(&self) -> Pixbuf { ... }
    fn on_currently_loading_frame(&self) -> bool { ... }
    fn advance(&self, current_time: SystemTime) -> bool { ... }
}

Provided Methods§

Source

fn delay_time(&self) -> Option<Duration>

Time in milliseconds, returning None implies showing the same pixbuf forever.

Source

fn pixbuf(&self) -> Pixbuf

Source

fn on_currently_loading_frame(&self) -> bool

Source

fn advance(&self, current_time: SystemTime) -> bool

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§