Type Alias IoOptions

Source
pub type IoOptions = IoOptions;
Expand description

Io Options available for invoking the script

Aliased Type§

enum IoOptions {
    Null,
    Pipe,
    Inherit,
}

Variants§

§

Null

Corresponds to Stdio::null()

§

Pipe

Corresponds to Stdio::pipe()

§

Inherit

Corresponds to Stdio::inherit()