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, time: Duration) -> 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, time: Duration) -> bool

Implementors§