tyt-common 0.1.6

Common types and utilities shared across all tyt crates.
Documentation
1
2
3
4
5
6
7
/// Fields from a failed external command execution.
#[derive(Debug)]
pub struct ExecFailed {
    pub exit_code: Option<i32>,
    pub stdout: String,
    pub stderr: String,
}