pub trait CrashAnnotator: Send {
    // Required methods
    fn set(&self, annotation: CrashAnnotation, value: &CStr);
    fn clear(&self, annotation: CrashAnnotation);
    fn box_clone(&self) -> Box<dyn CrashAnnotator>;
}
Expand description

Handler to expose support for annotating crash reports.

Required Methods§

source

fn set(&self, annotation: CrashAnnotation, value: &CStr)

source

fn clear(&self, annotation: CrashAnnotation)

source

fn box_clone(&self) -> Box<dyn CrashAnnotator>

Trait Implementations§

source§

impl Clone for Box<dyn CrashAnnotator>

source§

fn clone(&self) -> Box<dyn CrashAnnotator>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Implementors§