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

    // Provided methods
    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§

source

fn snapshot(&self, snapshot: &Snapshot, width: f64, height: f64)

Provided Methods§

Implementors§