Lines Matching defs:std
36 pub(crate) fn print(&self) -> std::io::Result<()> {
56 pub(crate) fn print(&self) -> std::io::Result<()> {
57 use std::io::Write;
63 let stdout = std::io::stdout();
68 let stderr = std::io::stderr();
77 impl std::fmt::Display for Colorizer {
78 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
87 Stream::Stdout => std::io::stdout().is_terminal(),
88 Stream::Stderr => std::io::stderr().is_terminal(),