pub trait RefWake: Send + Sync {
fn wake_by_ref(self: RefBorrow<'_, Self>);
fn wake(self: Ref<Self>) { ... }
}Expand description
Required Methods
fn wake_by_ref(self: RefBorrow<'_, Self>)
fn wake_by_ref(self: RefBorrow<'_, Self>)
Wakes a task up.