mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-24 05:33:41 +00:00
Link std::process::Output to Command and Child
This commit is contained in:
parent
3ed8b69842
commit
32c4b71471
@ -701,7 +701,14 @@ impl AsInnerMut<imp::Command> for Command {
|
||||
fn as_inner_mut(&mut self) -> &mut imp::Command { &mut self.inner }
|
||||
}
|
||||
|
||||
/// The output of a finished process.
|
||||
/// 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 {
|
||||
|
Loading…
Reference in New Issue
Block a user