pub struct PanicReport<'a> {
pub message: &'a str,
pub source: PanicSource,
}Expand description
A structured panic report passed to the telemetry hook.
Fields§
§message: &'a strThe panic message (extracted from the panic payload).
source: PanicSourceWhich panic→R-error boundary caught this panic.
Auto Trait Implementations§
impl<'a> Freeze for PanicReport<'a>
impl<'a> RefUnwindSafe for PanicReport<'a>
impl<'a> Send for PanicReport<'a>
impl<'a> Sync for PanicReport<'a>
impl<'a> Unpin for PanicReport<'a>
impl<'a> UnsafeUnpin for PanicReport<'a>
impl<'a> UnwindSafe for PanicReport<'a>
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