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.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tokio-util/src/io/mod.rs b/tokio-util/src/io/mod.rs
new file mode 100644
index 00000000..53066c4e
--- /dev/null
+++ b/tokio-util/src/io/mod.rs
@@ -0,0 +1,13 @@
+//! Helpers for IO related tasks.
+//!
+//! These types are often used in combination with hyper or reqwest, as they
+//! allow converting between a hyper [`Body`] and [`AsyncRead`].
+//!
+//! [`Body`]: https://docs.rs/hyper/0.13/hyper/struct.Body.html
+//! [`AsyncRead`]: tokio::io::AsyncRead
+
+mod reader_stream;
+mod stream_reader;
+
+pub use self::reader_stream::ReaderStream;
+pub use self::stream_reader::StreamReader;