mirror of
https://github.com/async-rs/async-std.git
synced 2025-01-30 01:05:31 +00:00
expose future::ready!
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
parent
e6880e12e8
commit
4b535d4ada
1 changed files with 4 additions and 0 deletions
|
@ -5,6 +5,10 @@ pub use std::future::Future;
|
|||
|
||||
use cfg_if::cfg_if;
|
||||
|
||||
// Re-export the `ready!` definition from an external crate to expose it from
|
||||
// this submodule.
|
||||
pub use futures::ready;
|
||||
|
||||
pub use pending::pending;
|
||||
pub use poll_fn::poll_fn;
|
||||
pub use ready::ready;
|
||||
|
|
Loading…
Reference in a new issue