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

Defines the style used for errors, defaults to Red

Defines the style used for warnings, defaults to Yellow

Defines the style used for good values, defaults to Green

Trait Implementations

impl<T: Debug> Debug for Format<T>
[src]

Formats the value using the given formatter.

impl<T: AsRef<str>> Display for Format<T>
[src]

Formats the value using the given formatter.