mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-24 00:00:11 +02:00
18 lines
525 B
Rust
18 lines
525 B
Rust
//! 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 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;
|