diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-09-15 23:02:50 -0400 |
|---|---|---|
| committer | Corey Farwell <coreyf@rwell.org> | 2017-09-15 23:22:26 -0400 |
| commit | a1f9052be76c7d28fe2ee1ff7dcb2464237c2bfc (patch) | |
| tree | 66fa2939acf4e806ca08cda0975135a50fd48b81 /src/libstd/process.rs | |
| parent | a6ef99e9f43e70c36dc9744bc87374033b2dedba (diff) | |
| download | rust-a1f9052be76c7d28fe2ee1ff7dcb2464237c2bfc.tar.gz rust-a1f9052be76c7d28fe2ee1ff7dcb2464237c2bfc.zip | |
Expand some of the std{in,out,err} usages.
Diffstat (limited to 'src/libstd/process.rs')
| -rw-r--r-- | src/libstd/process.rs | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs index 4dba9a4cb11..a70e632fe7c 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -106,15 +106,18 @@ use sys_common::{AsInner, AsInnerMut, FromInner, IntoInner}; pub struct Child { handle: imp::Process, - /// The handle for writing to the child's stdin, if it has been captured + /// The handle for writing to the child's standard input (stdin), if it has + /// been captured. #[stable(feature = "process", since = "1.0.0")] pub stdin: Option<ChildStdin>, - /// The handle for reading from the child's stdout, if it has been captured + /// The handle for reading from the child's standard output (stdout), if it + /// has been captured. #[stable(feature = "process", since = "1.0.0")] pub stdout: Option<ChildStdout>, - /// The handle for reading from the child's stderr, if it has been captured + /// The handle for reading from the child's standard error (stderr), if it + /// has been captured. #[stable(feature = "process", since = "1.0.0")] pub stderr: Option<ChildStderr>, } @@ -149,7 +152,7 @@ impl fmt::Debug for Child { } } -/// A handle to a child process's stdin. +/// A handle to a child process's standard input (stdin). /// /// This struct is used in the [`stdin`] field on [`Child`]. /// @@ -196,7 +199,7 @@ impl fmt::Debug for ChildStdin { } } -/// A handle to a child process's stdout. +/// A handle to a child process's standard output (stdout). /// /// This struct is used in the [`stdout`] field on [`Child`]. /// @@ -546,7 +549,8 @@ impl Command { self } - /// Configuration for the child process's stdin handle (file descriptor 0). + /// Configuration for the child process's standard input (stdin) handle + /// (file descriptor 0). /// /// # Examples /// @@ -566,7 +570,8 @@ impl Command { self } - /// Configuration for the child process's stdout handle (file descriptor 1). + /// Configuration for the child process's standard output (stdout) handle + /// (file descriptor 1). /// /// # Examples /// @@ -586,7 +591,8 @@ impl Command { self } - /// Configuration for the child process's stderr handle (file descriptor 2). + /// Configuration for the child process's standard error (stderr) handle + /// (file descriptor 2). /// /// # Examples /// |
