Trait LogLevel

Source
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> { ... }
}
Available on crate feature serde only.

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>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§