We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1d85ab commit ec1f33fCopy full SHA for ec1f33f
src/io/prelude.rs
@@ -1,4 +1,4 @@
1
-//! The I/O Prelude
+//! The async I/O Prelude
2
//!
3
//! The purpose of this module is to alleviate imports of many common I/O traits
4
//! by adding a glob import to the top of I/O heavy modules:
@@ -8,4 +8,11 @@
8
//! use async_std::io::prelude::*;
9
//! ```
10
11
-pub use super::{BufRead, Read, Seek, Write};
+#[doc(no_inline)]
12
+pub use super::BufRead as _;
13
14
+pub use super::Read as _;
15
16
+pub use super::Seek as _;
17
18
+pub use super::Write as _;
0 commit comments