Struct miow::pipe::AnonWrite [] [src]

pub struct AnonWrite(_);

Writable half of an anonymous pipe.

Trait Implementations

impl Debug for AnonWrite
[src]

Formats the value using the given formatter.

impl Write for AnonWrite
[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<'a> Write for &'a AnonWrite
[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 AsRawHandle for AnonWrite
[src]

Extracts the raw handle, without taking any ownership.

impl FromRawHandle for AnonWrite
[src]

Constructs a new I/O object from the specified raw handle. Read more

impl IntoRawHandle for AnonWrite
[src]

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