isahc/
task.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Helpers for working with tasks and futures.

use std::task::Waker;

/// Helper methods for working with wakers.
pub(crate) trait WakerExt {
    /// Create a new waker from a closure that accepts this waker as an
    /// argument.
    fn chain(&self, f: impl Fn(&Waker) + Send + Sync + 'static) -> Waker;
}

impl WakerExt for Waker {
    fn chain(&self, f: impl Fn(&Waker) + Send + Sync + 'static) -> Waker {
        let inner = self.clone();
        waker_fn::waker_fn(move || (f)(&inner))
    }
}