Enum clap::Format [] [src]

pub enum Format<T> {
    Error(T),
    Warning(T),
    Good(T),
}

Defines styles for different types of error messages. Defaults to Error=Red, Warning=Yellow, and Good=Green

Variants

Error

Defines the style used for errors, defaults to Red

Warning

Defines the style used for warnings, defaults to Yellow

Good

Defines the style used for good values, defaults to Green

Trait Implementations

impl<T: AsRef<str>> Display for Format<T>

fn fmt(&self, f: &mut Formatter) -> Result

Derived Implementations

impl<T: Debug> Debug for Format<T>

fn fmt(&self, __arg_0: &mut Formatter) -> Result