pub trait WarningHandler {
    fn handle(&mut self, warning: &str);
}

Required Methods

Handle a warning

Implementors