tokio_io/io/
mod.rs

1//! I/O conveniences when working with primitives in `tokio-core`
2//!
3//! Contains various combinators to work with I/O objects and type definitions
4//! as well.
5//!
6//! A description of the high-level I/O combinators can be [found online] in
7//! addition to a description of the [low level details].
8//!
9//! [found online]: https://tokio.rs/docs/getting-started/core/
10//! [low level details]: https://tokio.rs/docs/going-deeper-tokio/core-low-level/
11
12mod copy;
13mod flush;
14mod read;
15mod read_exact;
16mod read_to_end;
17mod read_until;
18mod shutdown;
19mod write_all;
20
21pub use self::copy::{copy, Copy};
22pub use self::flush::{flush, Flush};
23pub use self::read::{read, Read};
24pub use self::read_exact::{read_exact, ReadExact};
25pub use self::read_to_end::{read_to_end, ReadToEnd};
26pub use self::read_until::{read_until, ReadUntil};
27pub use self::shutdown::{shutdown, Shutdown};
28pub use self::write_all::{write_all, WriteAll};
29pub use allow_std::AllowStdIo;
30pub use lines::{lines, Lines};
31pub use split::{ReadHalf, WriteHalf};
32pub use window::Window;