Trait egui_inbox::RequestRepaintTrait

source ·
pub trait RequestRepaintTrait {
    // Required method
    fn request_repaint(&self);
}
Expand description

Trait to request a repaint.

Required Methods§

source

fn request_repaint(&self)

Request a repaint.

Trait Implementations§

Implementations on Foreign Types§

source§

impl RequestRepaintTrait for &Box<dyn RequestRepaintTrait>

Implementors§

source§

impl<F> RequestRepaintTrait for F
where F: Fn() + Send + Sync + 'static,