pub trait EventLoopWaker: 'static + Send {
// Required methods
fn clone_box(&self) -> Box<dyn MainThreadWaker>;
fn wake(&self);
}
Required Methods§
Trait Implementations§
source§impl Clone for Box<dyn MainThreadWaker>
impl Clone for Box<dyn MainThreadWaker>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more