Struct tokio_process::ChildStdin [] [src]

pub struct ChildStdin { /* fields omitted */ }

The standard input stream for spawned children.

This type implements the Write trait to pass data to the stdin handle of a child process. Note that this type is also "futures aware" meaning that it is both (a) nonblocking and (b) will panic if used off of a future's task.

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

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

impl AsyncWrite for ChildStdin
[src]

Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down. Read more

Write a Buf into this value, returning how many bytes were written. Read more