pub trait Handler {
    fn handle(&mut self, level: Level, message: &str);
}
Expand description

A mutable handler for text warnings. Approach 3.

Required Methods

Handle a log message

Implementors