io_process/runtimes/
mod.rs

1//! Collection of process I/O handlers.
2//!
3//! The I/O handler contains all the I/O logic. It takes input from
4//! the coroutine, processes the requested I/O, then puts the output
5//! back inside the coroutine.
6//!
7//! If you miss a handler matching your requirements, you can easily
8//! implement your own by taking example on the existing ones. PRs are
9//! welcomed!
10
11#[cfg(feature = "std")]
12pub mod std;
13#[cfg(feature = "tokio")]
14pub mod tokio;