io_process/coroutines/
mod.rs

1//! Collection of I/O-free, resumable and composable process 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::ProcessIo
8//! [runtimes]: crate::runtimes
9
10#[path = "spawn-then-wait.rs"]
11pub mod spawn_then_wait;
12#[path = "spawn-then-wait-with-output.rs"]
13pub mod spawn_then_wait_with_output;