referrerpolicy=no-referrer-when-downgrade

Function polkadot_node_subsystem::gen::futures::task::noop_waker_ref

pub fn noop_waker_ref() -> &'static Waker
Expand description

Get a static reference to a Waker which does nothing when wake() is called on it.

§Examples

use futures::task::noop_waker_ref;
let waker = noop_waker_ref();
waker.wake_by_ref();