pub trait Reporter {
    fn report(&mut self, span: &Span);
    fn close(&mut self);
}

Required Methods

Implementors