pub trait Verbose {
    fn verbosity(&self) -> Option<Verbosity>;
}
Expand description

Implementors of Verbose will be associated with a level of Verbosity.

Required Methods

Returns level of Verbosity.

Implementors