Crate yield_now

Source
Expand description

Wakes current task and returns Poll::Pending once

This function can be used when we want to give task scheduler time to pause before doing some long running task.

§Examples

use yield_now::yield_now;

yield_now().await;

Enums§

YieldNow

Functions§

yield_now
Wakes current task and returns Poll::Pending once