azul_webrender_api

Trait CrashAnnotator

Source
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§