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
14
15
//! Module dedicated to spawn status.

use std::process::{ExitStatus, Stdio};

/// The process spawn exit status.
///
/// Wrapper containing the standard exit status, stdin, stdout and
/// stderr of a spawned command.
#[derive(Debug)]
pub struct SpawnStatus {
    pub status: ExitStatus,
    pub stdin: Option<Stdio>,
    pub stdout: Option<Stdio>,
    pub stderr: Option<Stdio>,
}