pub trait EventLoopWaker: 'static + Send {
    // Required methods
    fn clone_box(&self) -> Box<dyn MainThreadWaker, Global>;
    fn wake(&self);
}

Required Methods§

Implementors§