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