pub trait CrashEvent: Sync + Send {
// Required method
fn on_crash(&self, minidump_path: PathBuf);
}Expand description
Trait used by the crash handler to notify the implementor that a crash was captured, providing the full path on disk to that minidump.