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(T)

Defines the style used for errors, defaults to Red

Warning(T)

Defines the style used for warnings, defaults to Yellow

Good(T)

Defines the style used for good values, defaults to Green

Trait Implementations

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

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

Formats the value using the given formatter.

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

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

Formats the value using the given formatter.