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

Required Methods§

source

fn notify(
    &self,
    product_name: &str,
    service_name: &str,
    panic_info: &CyfsPanicInfo
) -> BuckyResult<()>

Implementors§