arta_async_std/process.rs
1//! Async-std specific process manipulation implementation.
2mod child;
3mod command;
4mod outputs;
5
6use arta::process::ProcessRuntime;
7pub use child::*;
8pub use command::*;
9pub use outputs::*;
10
11use crate::AsyncStdGlobalRuntime;
12
13impl ProcessRuntime for AsyncStdGlobalRuntime {
14 type Command = AsyncStdCommand;
15 type Child = AsyncStdChild;
16}