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.
2 parents f5eb33f + 8c4a68d commit 430ac4bCopy full SHA for 430ac4b
src/libstd/process.rs
@@ -702,6 +702,15 @@ impl AsInnerMut<imp::Command> for Command {
702
}
703
704
/// The output of a finished process.
705
+///
706
+/// This is returned in a Result by either the [`output`] method of a
707
+/// [`Command`], or the [`wait_with_output`] method of a [`Child`]
708
+/// process.
709
710
+/// [`Command`]: struct.Command.html
711
+/// [`Child`]: struct.Child.html
712
+/// [`output`]: struct.Command.html#method.output
713
+/// [`wait_with_output`]: struct.Child.html#method.wait_with_output
714
#[derive(PartialEq, Eq, Clone)]
715
#[stable(feature = "process", since = "1.0.0")]
716
pub struct Output {
0 commit comments