Struct std::process::ChildStdin1.0.0[][src]

pub struct ChildStdin { /* fields omitted */ }

A handle to a child process's standard input (stdin).

This struct is used in the stdin field on Child.

When an instance of ChildStdin is dropped, the ChildStdin's underlying file handle will be closed. If the child process was blocked on input prior to being dropped, it will become unblocked after dropping.

Trait Implementations

impl Write for ChildStdin
[src]

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Important traits for &'a mut I

Creates a "by reference" adaptor for this instance of Write. Read more

impl Debug for ChildStdin
1.16.0
[src]

Formats the value using the given formatter. Read more

impl From<ChildStdin> for Stdio
1.20.0
[src]

Performs the conversion.

impl AsRawHandle for ChildStdin
1.2.0
[src]

This is supported on Windows only.

Extracts the raw handle, without taking any ownership.

impl IntoRawHandle for ChildStdin
1.4.0
[src]

This is supported on Windows only.

Consumes this object, returning the raw underlying handle. Read more

impl AsRawFd for ChildStdin
1.2.0
[src]

This is supported on Unix only.

Extracts the raw file descriptor. Read more

impl IntoRawFd for ChildStdin
1.4.0
[src]

This is supported on Unix only.

Consumes this object, returning the raw underlying file descriptor. Read more

Auto Trait Implementations

impl Send for ChildStdin

impl Sync for ChildStdin