Struct sentry::integrations::backtrace::AttachStacktraceIntegration
source · 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§
source§impl AttachStacktraceIntegration
impl AttachStacktraceIntegration
sourcepub fn new() -> AttachStacktraceIntegration
pub fn new() -> AttachStacktraceIntegration
Creates a new Integration to attach stacktraces to Events.
Trait Implementations§
source§impl Debug for AttachStacktraceIntegration
impl Debug for AttachStacktraceIntegration
source§impl Default for AttachStacktraceIntegration
impl Default for AttachStacktraceIntegration
source§fn default() -> AttachStacktraceIntegration
fn default() -> AttachStacktraceIntegration
Returns the “default value” for a type. Read more
source§impl Integration for AttachStacktraceIntegration
impl Integration for AttachStacktraceIntegration
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 AttachStacktraceIntegration
impl RefUnwindSafe for AttachStacktraceIntegration
impl Send for AttachStacktraceIntegration
impl Sync for AttachStacktraceIntegration
impl Unpin for AttachStacktraceIntegration
impl UnwindSafe for AttachStacktraceIntegration
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