pub trait ErrorReport<T> {
    fn report_err(&self);
    fn ok_and_report(self) -> Option<T>;
}

Required Methods

Implementations on Foreign Types

Implementors