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§
fn set(&self, annotation: CrashAnnotation, value: &CStr)
fn clear(&self, annotation: CrashAnnotation)
fn box_clone(&self) -> Box<dyn CrashAnnotator>
Trait Implementations§
Source§impl Clone for Box<dyn CrashAnnotator>
impl Clone for Box<dyn CrashAnnotator>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more