pub trait Hook: Send + Sync {
    // Required method
    fn file_report(
        &self,
        report: CrashReport
    ) -> BoxFuture<'static, Result<FileReportResults, FilingError>>;
}
Expand description

A call hook that can be used to inject responses into the CrashReporter service.

Required Methods§

source

fn file_report( &self, report: CrashReport ) -> BoxFuture<'static, Result<FileReportResults, FilingError>>

Describes what the file_report call will return.

Implementors§