pub trait Warn<W> {
// Required method
fn warn(&mut self, warning: W);
}Expand description
Trait for objects that can accept warnings.
pub trait Warn<W> {
// Required method
fn warn(&mut self, warning: W);
}Trait for objects that can accept warnings.