anyhow_std/process.rs
1//! Wrappers for [std::process] which provide commands in error contexts
2
3mod child;
4mod command;
5mod exitstatus;
6mod output;
7
8pub use self::child::Child;
9pub use self::command::CommandAnyhow;
10pub use self::exitstatus::ExitStatus;
11pub use self::output::Output;
12
13#[cfg(test)]
14mod tests;