1 2 3 4 5 6 7 8 9 10 11 12 13 14
use std::sync::Arc; use std::task::{Wake, Waker}; pub fn waker() -> Waker { Arc::new(NoopWaker).into() } struct NoopWaker; impl Wake for NoopWaker { fn wake(self: Arc<Self>) { // } }