pub trait IsInteractiveEnvironment {
// Required method
fn is_interactive(&self) -> bool;
}Expand description
An interface for checking if the current environment is an interactive one.
Required Methods§
Sourcefn is_interactive(&self) -> bool
fn is_interactive(&self) -> bool
Indicates if running in interactive mode.