mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-26 10:16:49 +00:00
Merge pull request #133 from yoshuawuyts/ready_macro
expose `task::ready!`
This commit is contained in:
commit
553e48057f
1 changed files with 5 additions and 0 deletions
|
@ -25,6 +25,11 @@
|
||||||
#[doc(inline)]
|
#[doc(inline)]
|
||||||
pub use std::task::{Context, Poll, Waker};
|
pub use std::task::{Context, Poll, Waker};
|
||||||
|
|
||||||
|
#[cfg(feature = "unstable")]
|
||||||
|
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
|
||||||
|
#[doc(inline)]
|
||||||
|
pub use async_macros::ready;
|
||||||
|
|
||||||
pub use block_on::block_on;
|
pub use block_on::block_on;
|
||||||
pub use builder::Builder;
|
pub use builder::Builder;
|
||||||
pub use pool::spawn;
|
pub use pool::spawn;
|
||||||
|
|
Loading…
Reference in a new issue