Enum unix_exec_output_catcher::OCatchStrategy[][src]

pub enum OCatchStrategy {
    StdCombined,
    StdSeparately,
}
Expand description

Determines the strategy that is used to get STDOUT, STDERR, and “STDCOMBINED”. Both has advantages and disadvantages.

Variants

StdCombined

Catches all output lines of STDOUT and STDERR in correct order on a line by line base. There is no way to find out STDOUT-only or STDERR-only lines.

StdSeparately

Catches all output lines from STDOUT and STDERR separately. There is also a “STDCOMBINED” vector, but the order is not 100% correct. It’s only approximately correct on a best effort base. If between each STDOUT/STDERR-alternating output is ≈100µs (a few thousand cycles) it should be definitely fine, but there is no guarantee for that. Also the incorrectness is not deterministic. This is because STDOUT and STDERR are two separate streams. Scheduling and buffering result in different results.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.