Struct async_std::io::Stderr [−][src]
pub struct Stderr(_);
Expand description
A handle to the standard error of the current process.
This writer is created by the stderr
function. See its documentation for
more.
Note: Windows Portability Consideration
When operating in a console, the Windows implementation of this stream does not support non-UTF-8 byte sequences. Attempting to write bytes that are not valid UTF-8 will return an error.
Trait Implementations
Extracts the raw handle, without taking any ownership.
Attempt to write bytes from buf
into the object.
Attempt to flush the object, ensuring that any buffered data reach their destination. Read more
Attempt to close the object.
Attempt to write bytes from bufs
into the object using vectored IO operations.
Writes some bytes into the byte stream. Read more
Flushes the stream to ensure that all buffered contents reach their destination. Read more
Writes an entire buffer into the byte stream. Read more