pub trait IsTerminal {
    fn is_terminal(&self) -> bool;
}

Required methods

Returns true if this is a terminal.

Example
use is_terminal::IsTerminal;

if std::io::stdout().is_terminal() {
    println!("stdout is a terminal")
}

Implementors