pub trait PaintableImplExt: Sealed + ObjectSubclass {
// Provided methods
fn parent_current_image(&self) -> Paintable { ... }
fn parent_flags(&self) -> PaintableFlags { ... }
fn parent_intrinsic_width(&self) -> i32 { ... }
fn parent_intrinsic_height(&self) -> i32 { ... }
fn parent_intrinsic_aspect_ratio(&self) -> f64 { ... }
fn parent_snapshot(&self, snapshot: &Snapshot, width: f64, height: f64) { ... }
}
Provided Methods§
fn parent_current_image(&self) -> Paintable
fn parent_flags(&self) -> PaintableFlags
fn parent_intrinsic_width(&self) -> i32
fn parent_intrinsic_height(&self) -> i32
fn parent_intrinsic_aspect_ratio(&self) -> f64
fn parent_snapshot(&self, snapshot: &Snapshot, width: f64, height: f64)
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.