Trait IsTty
pub trait IsTty {
// Required method
fn is_tty(&self) -> bool;
}
Available on crate features
dep_crossterm
and std
only.Expand description
Adds the is_tty
method to types that might represent a terminal
use std::io::stdout;
use crossterm::tty::IsTty;
let is_tty: bool = stdout().is_tty();