pub fn stdout() -> Stdout
Constructs a new handle to the standard output of the current process.
Each handle returned is a reference to a shared global buffer whose access is synchronized via a mutex. If you need more explicit control over locking, see the Stdout::lock method.
Using implicit synchronization:
use std::io::{self, Write}; io::stdout().write(b"hello world")?;
Using explicit synchronization:
use std::io::{self, Write}; let stdout = io::stdout(); let mut handle = stdout.lock(); handle.write(b"hello world")?;
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/io/fn.stdout.html