Skip to main content

BashOutput

Type Alias BashOutput 

Source
pub type BashOutput = BashEvent;

Aliased Type§

pub enum BashOutput {
    Stdout {
        line: String,
    },
    Stderr {
        line: String,
    },
    Exit {
        code: i32,
    },
}

Variants§

§

Stdout

Standard output line

Fields

§line: String
§

Stderr

Standard error line

Fields

§line: String
§

Exit

Exit code when process completes

Fields

§code: i32