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§
sourcefn delay_time(&self) -> Option<Duration>
fn delay_time(&self) -> Option<Duration>
Time in milliseconds, returning None
implies showing the same pixbuf forever.