This commit is contained in:
Nikolay Kim 2024-06-26 15:59:53 +05:00
parent f6fe18654a
commit b890518bf0

View file

@ -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
}