Constant STDOUT
pub const STDOUT: BorrowedFd<'static>;
The file descriptor for the standard output stream of the current process.
See [io::stdout()]crate::io::stdout for the higher level handle, which should be preferred
whenever possible. See STDERR for why the file descriptor might be required and caveats. In
addition to the issues discussed there, note that [Stdout]crate::io::Stdout is buffered by
default, and writing to the file descriptor will bypass this buffer.