1.0.0[][src]Struct std::process::ChildStdin

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 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

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 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.

Auto Trait Implementations

impl Send for ChildStdin

impl Sync for ChildStdin

Blanket Implementations

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from #33417)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from #33417)

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from #33417)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from #33417)

Performs the conversion.

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Important traits for &'a mut I

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Important traits for &'a mut I

Mutably borrows from an owned value. Read more

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id #27745)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more