21 lines
474 B
Rust
21 lines
474 B
Rust
|
// edition: 2021
|
||
|
|
||
|
#![feature(async_closure, noop_waker, async_fn_traits)]
|
||
|
|
||
|
use std::future::Future;
|
||
|
use std::pin::pin;
|
||
|
use std::task::*;
|
||
|
|
||
|
pub fn block_on<T>(fut: impl Future<Output = T>) -> T {
|
||
|
let mut fut = pin!(fut);
|
||
|
// Poll loop, just to test the future...
|
||
|
let ctx = &mut Context::from_waker(Waker::noop());
|
||
|
|
||
|
loop {
|
||
|
match unsafe { fut.as_mut().poll(ctx) } {
|
||
|
Poll::Pending => {}
|
||
|
Poll::Ready(t) => break t,
|
||
|
}
|
||
|
}
|
||
|
}
|