Skip to content

Commit

Permalink
Rollup merge of rust-lang#45113 - Pirh:process_output_links, r=stevek…
Browse files Browse the repository at this point in the history
…labnik

Link std::process::Output to Command and Child

As per rust-lang#29370
  • Loading branch information
kennytm authored Oct 15, 2017
2 parents f5eb33f + 8c4a68d commit 430ac4b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/libstd/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -702,6 +702,15 @@ impl AsInnerMut<imp::Command> for Command {
}

/// 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.
///
/// [`Command`]: struct.Command.html
/// [`Child`]: struct.Child.html
/// [`output`]: struct.Command.html#method.output
/// [`wait_with_output`]: struct.Child.html#method.wait_with_output
#[derive(PartialEq, Eq, Clone)]
#[stable(feature = "process", since = "1.0.0")]
pub struct Output {
Expand Down

0 comments on commit 430ac4b

Please sign in to comment.