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§

Object Safety§

This trait is not object safe.

Implementors§