pub trait Warn<E: Error> {
    fn warn(&mut self, error: E);
}
Expand description

Sink to which the non-fatal errors of type E can be written

Required Methods

Push the error error to the sink

Implementors