futures: add block_on

This commit is contained in:
Dario Nieuwenhuis
2022-08-28 22:51:52 +02:00
parent 973f3b513f
commit 764ee3b72c
2 changed files with 33 additions and 0 deletions

View File

@ -5,8 +5,10 @@
// This mod MUST go first, so that the others see its macros.
pub(crate) mod fmt;
mod block_on;
mod select;
mod yield_now;
pub use block_on::*;
pub use select::*;
pub use yield_now::*;