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§
fn is_static_image(&self) -> bool
fn static_image(&self) -> Option<Pixbuf>
fn size(&self) -> (i32, i32)
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.