Struct process::Output

Overview

The output of a finished process.

This is returned in a Result by either the output method of a Command, or the wait_with_output method of a Child process.

Protocols

protocol GET status
let $out = value.status

Allows a get operation to work.

protocol GET stdout
let $out = value.stdout

Allows a get operation to work.

protocol GET stderr
let $out = value.stderr

Allows a get operation to work.

protocol DEBUG_FMT
format!("{:?}", value)

Allows the value to be debug printed.