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 Debug for ChildStdin
[src]

[src]

Formats the value using the given formatter. Read more

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

impl AsyncWrite for ChildStdin
[src]

[src]

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

[src]

Attempt to write bytes from buf into the object. Read more

[src]

Attempt to flush the object, ensuring that any buffered data reach their destination. Read more

[src]

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

Auto Trait Implementations

impl Send for ChildStdin

impl Sync for ChildStdin