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

    // Provided methods
    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> { ... }
}
Expand description

Customize the default log-level and associated help

Required Methods§

Provided Methods§

source

fn verbose_help() -> Option<&'static str>

source

fn verbose_long_help() -> Option<&'static str>

source

fn quiet_help() -> Option<&'static str>

source

fn quiet_long_help() -> Option<&'static str>

Object Safety§

This trait is not object safe.

Implementors§