pub trait LogLevel {
    fn default() -> Option<Level>;

    fn verbose_help() -> Option<&'static str> { ... }
    fn verbose_long_help() -> Option<&'static str> { ... }
    fn quiet_help() -> Option<&'static str> { ... }
    fn quiet_long_help() -> Option<&'static str> { ... }
}

Required Methods

Provided Methods

Implementors