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

Required Methods§

source

fn clone_box(&self) -> Box<dyn MainThreadWaker + 'static, Global>

source

fn wake(&self)

Implementors§