tokio_ioext/lib.rs
1//! This library provides functions that are similar but not equal to `tokio-io` functions.
2//!
3//! These functions can be more specialized or provide more control for performing asynchronous io.
4
5extern crate futures;
6#[macro_use]
7extern crate tokio_io;
8
9mod try_read_full;
10mod read_lim;
11
12pub use try_read_full::*;
13pub use read_lim::*;