pub trait ReportErrorEnvironment {
// Required method
fn report_error<'a>(
&mut self,
fail: &'a (dyn Error + Sync + Send + 'static),
) -> BoxFuture<'a, ()>;
}Expand description
An interface for reporting arbitrary errors.