io_stream/coroutines/
mod.rs

1//! Collection of I/O-free, resumable and composable stream state
2//! machines.
3//!
4//! Coroutines emit [I/O] requests that need to be processed by
5//! [runtimes] in order to continue their progression.
6//!
7//! [I/O]: crate::io::StreamIo
8//! [runtimes]: crate::runtimes
9
10pub mod read;
11#[path = "read-exact.rs"]
12pub mod read_exact;
13#[path = "read-to-end.rs"]
14pub mod read_to_end;
15pub mod write;