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