We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ed8b69 commit 32c4b71Copy full SHA for 32c4b71
src/libstd/process.rs
@@ -701,7 +701,14 @@ impl AsInnerMut<imp::Command> for Command {
701
fn as_inner_mut(&mut self) -> &mut imp::Command { &mut self.inner }
702
}
703
704
-/// The output of a finished process.
+/// The output of a finished process. This is returned in a Result by
705
+/// either the [`output`] method of a [`Command`], or the
706
+/// [`wait_with_output`] method of a [`Child`] process.
707
+///
708
+/// [`Command`]: struct.Command.html
709
+/// [`Child`]: struct.Child.html
710
+/// [`output`]: struct.Command.html#method.output
711
+/// [`wait_with_output`]: struct.Child.html#method.wait_with_output
712
#[derive(PartialEq, Eq, Clone)]
713
#[stable(feature = "process", since = "1.0.0")]
714
pub struct Output {
0 commit comments