pub struct ProcessStacktraceIntegration;
Expand description
Integration to process Event stacktraces.
This integration will trim backtraces, depending on the trim_backtraces
and extra_border_frames
options.
It will then classify each frame according to the in_app_include
and
in_app_exclude
options.
Implementations§
source§impl ProcessStacktraceIntegration
impl ProcessStacktraceIntegration
sourcepub fn new() -> ProcessStacktraceIntegration
pub fn new() -> ProcessStacktraceIntegration
Creates a new Integration to process stacktraces.
Trait Implementations§
source§impl Debug for ProcessStacktraceIntegration
impl Debug for ProcessStacktraceIntegration
source§impl Default for ProcessStacktraceIntegration
impl Default for ProcessStacktraceIntegration
source§fn default() -> ProcessStacktraceIntegration
fn default() -> ProcessStacktraceIntegration
Returns the “default value” for a type. Read more
source§impl Integration for ProcessStacktraceIntegration
impl Integration for ProcessStacktraceIntegration
source§fn process_event(
&self,
event: Event<'static>,
options: &ClientOptions,
) -> Option<Event<'static>>
fn process_event( &self, event: Event<'static>, options: &ClientOptions, ) -> Option<Event<'static>>
The Integrations Event Processor Hook. Read more
source§fn setup(&self, options: &mut ClientOptions)
fn setup(&self, options: &mut ClientOptions)
Called whenever the integration is attached to a Client.
Auto Trait Implementations§
impl Freeze for ProcessStacktraceIntegration
impl RefUnwindSafe for ProcessStacktraceIntegration
impl Send for ProcessStacktraceIntegration
impl Sync for ProcessStacktraceIntegration
impl Unpin for ProcessStacktraceIntegration
impl UnwindSafe for ProcessStacktraceIntegration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more