Struct StdoutLock
struct StdoutLock<'a> { ... }
A locked reference to the Stdout handle.
This handle implements the Write trait, and is constructed via
the Stdout::lock method. See its documentation for more.
By default, the handle is line-buffered when connected to a terminal, meaning
it flushes automatically when a newline (\n) is encountered. For immediate
output, you can manually call the flush method. When the handle goes out
of scope, the buffer is automatically flushed.
Note: Windows Portability Considerations
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.
In a process with a detached console, such as one using
#![windows_subsystem = "windows"], or in a child process spawned from such a process,
the contained handle will be null. In such cases, the standard library's Read and
Write will do nothing and silently succeed. All other I/O operations, via the
standard library or via raw Windows API calls, will fail.
Implementations
impl Debug for StdoutLock<'_>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl IsTerminal for StdoutLock<'_>
fn is_terminal(self: &Self) -> bool
impl RefUnwindSafe for StdoutLock<'_>
impl StdioExt for StdoutLock<'_>
fn set_fd<T: Into<OwnedFd>>(self: &mut Self, fd: T) -> Result<()>fn take_fd(self: &mut Self) -> Result<OwnedFd>fn replace_fd<T: Into<OwnedFd>>(self: &mut Self, replace_with: T) -> Result<OwnedFd>
impl UnwindSafe for StdoutLock<'_>
impl Write for StdoutLock<'_>
fn write(self: &mut Self, buf: &[u8]) -> Result<usize>fn write_vectored(self: &mut Self, bufs: &[IoSlice<'_>]) -> Result<usize>fn is_write_vectored(self: &Self) -> boolfn flush(self: &mut Self) -> Result<()>fn write_all(self: &mut Self, buf: &[u8]) -> Result<()>fn write_all_vectored(self: &mut Self, bufs: &mut [IoSlice<'_>]) -> Result<()>
impl<'a> AsFd for StdoutLock<'a>
fn as_fd(self: &Self) -> BorrowedFd<'_>
impl<'a> AsHandle for StdoutLock<'a>
fn as_handle(self: &Self) -> BorrowedHandle<'_>
impl<'a> AsRawFd for StdoutLock<'a>
fn as_raw_fd(self: &Self) -> RawFd
impl<'a> AsRawHandle for StdoutLock<'a>
fn as_raw_handle(self: &Self) -> RawHandle
impl<'a> Freeze for StdoutLock<'a>
impl<'a> Send for StdoutLock<'a>
impl<'a> Sync for StdoutLock<'a>
impl<'a> Unpin for StdoutLock<'a>
impl<'a> UnsafeUnpin for StdoutLock<'a>
impl<T> Any for StdoutLock<'a>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for StdoutLock<'a>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for StdoutLock<'a>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for StdoutLock<'a>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for StdoutLock<'a>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for StdoutLock<'a>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for StdoutLock<'a>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>