pub struct AttachStacktraceIntegration;
Expand description
Integration to attach stacktraces to Events.
This integration will add an additional thread backtrace to captured
messages, respecting the attach_stacktrace
option.
Implementations
Trait Implementations
sourceimpl Debug for AttachStacktraceIntegration
impl Debug for AttachStacktraceIntegration
sourceimpl Default for AttachStacktraceIntegration
impl Default for AttachStacktraceIntegration
sourcefn default() -> AttachStacktraceIntegration
fn default() -> AttachStacktraceIntegration
Returns the “default value” for a type. Read more
sourceimpl Integration for AttachStacktraceIntegration
impl Integration for AttachStacktraceIntegration
sourcefn 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
sourcefn setup(&self, options: &mut ClientOptions)
fn setup(&self, options: &mut ClientOptions)
Called whenever the integration is attached to a Client.
Auto Trait Implementations
impl RefUnwindSafe for AttachStacktraceIntegration
impl Send for AttachStacktraceIntegration
impl Sync for AttachStacktraceIntegration
impl Unpin for AttachStacktraceIntegration
impl UnwindSafe for AttachStacktraceIntegration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more