We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 358d2bc commit 9d55fffCopy full SHA for 9d55fff
src/future/future.rs
@@ -120,9 +120,9 @@ extension_trait! {
120
///
121
/// ```
122
/// # async_std::task::block_on(async {
123
+ /// use async_std::prelude::*;
124
/// use async_std::future;
125
/// use std::time::Duration;
- /// use async_std::future::FutureExt;
126
127
/// let a = future::ready(1).delay(Duration::from_millis(2000));
128
/// dbg!(a.await);
src/future/mod.rs
@@ -51,7 +51,6 @@ pub use async_macros::{select, try_select};
51
use cfg_if::cfg_if;
52
53
pub use future::Future;
54
-pub use future::FutureExt;
55
pub use pending::pending;
56
pub use poll_fn::poll_fn;
57
pub use ready::ready;
0 commit comments