bacon 3.23.0

background rust compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use {
    crate::*,
    serde::{
        Deserialize,
        Serialize,
    },
};

/// data of a failed command
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct Failure {
    pub error_code: i32,
    pub output: CommandOutput,
    pub suggest_backtrace: bool,
}