summaryrefslogtreecommitdiffstats
path: root/tokio/src/io/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/io/mod.rs')
-rw-r--r--tokio/src/io/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tokio/src/io/mod.rs b/tokio/src/io/mod.rs
index 9e0e0631..c43f0e83 100644
--- a/tokio/src/io/mod.rs
+++ b/tokio/src/io/mod.rs
@@ -196,6 +196,9 @@ pub use self::async_seek::AsyncSeek;
mod async_write;
pub use self::async_write::AsyncWrite;
+mod read_buf;
+pub use self::read_buf::ReadBuf;
+
// Re-export some types from `std::io` so that users don't have to deal
// with conflicts when `use`ing `tokio::io` and `std::io`.
pub use std::io::{Error, ErrorKind, Result, SeekFrom};