We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6880e1 commit 4b535d4Copy full SHA for 4b535d4
src/future/mod.rs
@@ -5,6 +5,10 @@ pub use std::future::Future;
5
6
use cfg_if::cfg_if;
7
8
+// Re-export the `ready!` definition from an external crate to expose it from
9
+// this submodule.
10
+pub use futures::ready;
11
+
12
pub use pending::pending;
13
pub use poll_fn::poll_fn;
14
pub use ready::ready;
0 commit comments