pub struct Stderr { /* private fields */ }
Expand description
A handle to the standard error stream of a process.
Concurrent writes to stderr must be executed with care: Only individual
writes to this AsyncWrite
are guaranteed to be intact. In particular
you should be aware that writes using write_all
are not guaranteed
to occur as a single write, so multiple threads writing data with
write_all
may result in interleaved output.
Created by the stderr
function.
Examples
use tokio::io::{self, AsyncWriteExt};
#[tokio::main]
async fn main() -> io::Result<()> {
let mut stderr = io::stdout();
stderr.write_all(b"Print some error here.").await?;
Ok(())
}
Trait Implementations
sourceimpl AsyncWrite for Stderr
impl AsyncWrite for Stderr
sourcefn poll_write(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8]
) -> Poll<Result<usize>>
fn poll_write(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8]
) -> Poll<Result<usize>>
Attempt to write bytes from buf
into the object. Read more
sourcefn poll_flush(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>
fn poll_flush(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>
Attempts to flush the object, ensuring that any buffered data reach their destination. Read more
Auto Trait Implementations
impl !RefUnwindSafe for Stderr
impl Send for Stderr
impl Sync for Stderr
impl Unpin for Stderr
impl !UnwindSafe for Stderr
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more