Make doc for stdin field of process consistent
The other fields use this format and example.
This commit is contained in:
parent
aa8e761def
commit
7abbfa8c41
1 changed files with 5 additions and 5 deletions
|
@ -169,15 +169,15 @@ use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
|
||||||
pub struct Child {
|
pub struct Child {
|
||||||
pub(crate) handle: imp::Process,
|
pub(crate) handle: imp::Process,
|
||||||
|
|
||||||
/// The handle for writing to the child's standard input (stdin), if it has
|
/// The handle for writing to the child's standard input (stdin), if it
|
||||||
/// been captured. To avoid partially moving
|
/// has been captured. You might find it helpful to do
|
||||||
/// the `child` and thus blocking yourself from calling
|
|
||||||
/// functions on `child` while using `stdin`,
|
|
||||||
/// you might find it helpful:
|
|
||||||
///
|
///
|
||||||
/// ```compile_fail,E0425
|
/// ```compile_fail,E0425
|
||||||
/// let stdin = child.stdin.take().unwrap();
|
/// let stdin = child.stdin.take().unwrap();
|
||||||
/// ```
|
/// ```
|
||||||
|
///
|
||||||
|
/// to avoid partially moving the `child` and thus blocking yourself from calling
|
||||||
|
/// functions on `child` while using `stdin`.
|
||||||
#[stable(feature = "process", since = "1.0.0")]
|
#[stable(feature = "process", since = "1.0.0")]
|
||||||
pub stdin: Option<ChildStdin>,
|
pub stdin: Option<ChildStdin>,
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue