Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardRustFuture polling and wakersSingle-choice MCQ

Consider this future. What does the executor observe across two consecutive `poll` calls on the SAME future instance?

async fn task<F: Future<Output=()>>(inner: F) { println!("before"); inner.await; println!("after"); }