1 2 3 4 5 6 7
use alloc::sync::Arc; use alloc::task::Wake; pub(crate) struct DummyWaker(); impl Wake for DummyWaker { fn wake(self: Arc<Self>) {} }