mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
wip
This commit is contained in:
parent
f6fe18654a
commit
b890518bf0
1 changed files with 3 additions and 1 deletions
|
@ -73,6 +73,8 @@ impl fmt::Debug for LocalWaker {
|
|||
#[doc(hidden)]
|
||||
/// Yields execution back to the current runtime.
|
||||
pub async fn yield_to() {
|
||||
use std::{future::Future, pin::Pin, task::Context, task::Poll};
|
||||
|
||||
struct Yield {
|
||||
completed: bool,
|
||||
}
|
||||
|
@ -86,7 +88,7 @@ pub async fn yield_to() {
|
|||
}
|
||||
|
||||
self.completed = true;
|
||||
cx.waker().clone().wake();
|
||||
cx.waker().wake_by_ref();
|
||||
|
||||
Poll::Pending
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue