pub trait ErrorStore {
    fn report(&mut self, err: Error);
    fn report_all(&mut self, err: Errors);
    fn take_errors(&mut self) -> Errors;
}

Required Methods

Implementations on Foreign Types

Implementors