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