io-process 0.0.2

Set of I/O-free coroutines and runtimes to manage processes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Collection of I/O-free, resumable and composable process state
//! machines.
//!
//! Coroutines emit [I/O] requests that need to be processed by
//! [runtimes] in order to continue their progression.
//!
//! [I/O]: crate::io::ProcessIo
//! [runtimes]: crate::runtimes

#[path = "spawn-then-wait.rs"]
pub mod spawn_then_wait;
#[path = "spawn-then-wait-with-output.rs"]
pub mod spawn_then_wait_with_output;