We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b5994c commit 57111d0Copy full SHA for 57111d0
src/future/mod.rs
@@ -5,10 +5,6 @@ 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 ready::ready;
14
src/task/mod.rs
@@ -24,6 +24,10 @@
24
#[doc(inline)]
25
pub use std::task::{Context, Poll, Waker};
26
27
+// Re-export the `ready!` definition from an external crate to expose it from
28
+// this submodule.
29
+pub use futures::ready;
30
+
31
pub use local::{AccessError, LocalKey};
32
pub use pool::{block_on, current, spawn, Builder};
33
pub use sleep::sleep;
0 commit comments