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

pub struct ChildStdin { /* fields omitted */ }

A handle to a child process's stdin.

This struct is used in the stdin field on Child.

Trait Implementations

impl Write for ChildStdin
[src]

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

impl Debug for ChildStdin
1.16.0
[src]

[src]

Formats the value using the given formatter.

impl AsRawFd for ChildStdin
1.2.0
[src]

[src]

This is supported on Unix only.

Extracts the raw file descriptor. Read more

impl IntoRawFd for ChildStdin
1.4.0
[src]

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

[src]

This is supported on Windows only.

Extracts the raw handle, without taking any ownership.

impl IntoRawHandle for ChildStdin
1.4.0
[src]

[src]

This is supported on Windows only.

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