mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 13:07:37 +00:00
19 lines
418 B
Rust
19 lines
418 B
Rust
![]() |
//@ edition: 2021
|
||
|
|
||
|
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,
|
||
|
}
|
||
|
}
|
||
|
}
|