async_std/process/mod.rs
1//! A module for working with processes.
2//!
3//! This module is mostly concerned with spawning and interacting with child processes, but it also
4//! provides abort and exit for terminating the current process.
5//!
6//! This is an async version of [`std::process`].
7//!
8//! [`std::process`]: https://doc.rust-lang.org/std/process/index.html
9
10// Re-export structs.
11pub use std::process::{ExitStatus, Output};
12
13// Re-export functions.
14pub use std::process::{abort, exit, id};