pub trait SpeculativePainter: Send + Sync {
    // Required method
    fn speculatively_draw_a_paint_image(
        &self,
        properties: Vec<(Atom, String)>,
        arguments: Vec<String>
    );
}
Expand description

Speculatively execute paint code in the worklet thread pool.

Required Methods§

Implementors§