Function futures_util::task::noop_waker
source · pub fn noop_waker() -> Waker
Expand description
Create a new [Waker
] which does
nothing when wake()
is called on it.
§Examples
use futures::task::noop_waker;
let waker = noop_waker();
waker.wake();