pub trait PixbufAnimationIterImpl: ObjectImpl + ObjectSubclass<Type: IsA<PixbufAnimationIter>> {
// 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.
fn pixbuf(&self) -> Pixbuf
fn on_currently_loading_frame(&self) -> bool
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.