pub trait PaintableImpl: ObjectImpl {
    fn snapshot(&self, snapshot: &Snapshot, width: f64, height: f64);

    fn current_image(&self) -> Paintable { ... }
    fn flags(&self) -> PaintableFlags { ... }
    fn intrinsic_width(&self) -> i32 { ... }
    fn intrinsic_height(&self) -> i32 { ... }
    fn intrinsic_aspect_ratio(&self) -> f64 { ... }
}

Required Methods§

Provided Methods§

Implementors§