summaryrefslogtreecommitdiffstats
path: root/tokio-util/src/io/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-util/src/io/mod.rs')
-rw-r--r--tokio-util/src/io/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/tokio-util/src/io/mod.rs b/tokio-util/src/io/mod.rs
index 53066c4e..7cf25989 100644
--- a/tokio-util/src/io/mod.rs
+++ b/tokio-util/src/io/mod.rs
@@ -6,8 +6,12 @@
//! [`Body`]: https://docs.rs/hyper/0.13/hyper/struct.Body.html
//! [`AsyncRead`]: tokio::io::AsyncRead
+mod poll_read_buf;
+mod read_buf;
mod reader_stream;
mod stream_reader;
+pub use self::poll_read_buf::poll_read_buf;
+pub use self::read_buf::read_buf;
pub use self::reader_stream::ReaderStream;
pub use self::stream_reader::StreamReader;