Add LocalWaker::with() helper (#387)

This commit is contained in:
Nikolay Kim 2024-07-30 12:40:51 +02:00 committed by GitHub
parent e9f3541726
commit d81e089059
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 13 additions and 1 deletions

View file

@ -32,6 +32,14 @@ impl LocalWaker {
}
}
/// Create an `LocalWaker`.
pub fn with(waker: Option<Waker>) -> Self {
LocalWaker {
waker: Cell::new(waker),
_t: PhantomData,
}
}
#[inline]
/// Registers the waker to be notified on calls to `wake`.
///