summaryrefslogtreecommitdiffstats
path: root/tokio-util/src/io/mod.rs
blob: eefd65a5e83e7b9714fbfb0a87401efcb8d6d9da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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 read_buf;
mod reader_stream;
mod stream_reader;

pub use self::read_buf::read_buf;
pub use self::reader_stream::ReaderStream;
pub use self::stream_reader::StreamReader;
pub use crate::util::poll_read_buf;