pub struct STDOUT { /* private fields */ }
Expand description
STDOUT is a printer output that is used by the print/println macros to display text on the standard output.
Trait Implementations§
Source§impl Deref for STDOUT
impl Deref for STDOUT
Source§type Target = Mutex<StaticPrinter>
type Target = Mutex<StaticPrinter>
The resulting type after dereferencing.
Source§fn deref(&self) -> &Mutex<StaticPrinter>
fn deref(&self) -> &Mutex<StaticPrinter>
Dereferences the value.
impl LazyStatic for STDOUT
Auto Trait Implementations§
impl Freeze for STDOUT
impl RefUnwindSafe for STDOUT
impl Send for STDOUT
impl Sync for STDOUT
impl Unpin for STDOUT
impl UnwindSafe for STDOUT
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more