pub trait BugReportHandler: Send + Sync {
// Required method
fn notify(
&self,
product_name: &str,
service_name: &str,
panic_info: &CyfsPanicInfo,
) -> BuckyResult<()>;
}pub trait BugReportHandler: Send + Sync {
// Required method
fn notify(
&self,
product_name: &str,
service_name: &str,
panic_info: &CyfsPanicInfo,
) -> BuckyResult<()>;
}