Skip to content

Commit ec1f33f

Browse files
committed
inline better
Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent b1d85ab commit ec1f33f

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/io/prelude.rs

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! The I/O Prelude
1+
//! The async I/O Prelude
22
//!
33
//! The purpose of this module is to alleviate imports of many common I/O traits
44
//! by adding a glob import to the top of I/O heavy modules:
@@ -8,4 +8,11 @@
88
//! use async_std::io::prelude::*;
99
//! ```
1010
11-
pub use super::{BufRead, Read, Seek, Write};
11+
#[doc(no_inline)]
12+
pub use super::BufRead as _;
13+
#[doc(no_inline)]
14+
pub use super::Read as _;
15+
#[doc(no_inline)]
16+
pub use super::Seek as _;
17+
#[doc(no_inline)]
18+
pub use super::Write as _;

0 commit comments

Comments
 (0)