pub struct CrashContext {
pub task: u32,
pub thread: u32,
pub handler_thread: u32,
pub exception: Option<ExceptionInfo>,
}Expand description
Full Macos crash context
Fields§
§task: u32The process which crashed
thread: u32The thread in the process that crashed
handler_thread: u32The thread that handled the exception. This may be useful to ignore.
exception: Option<ExceptionInfo>Optional exception information
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CrashContext
impl RefUnwindSafe for CrashContext
impl Send for CrashContext
impl Sync for CrashContext
impl Unpin for CrashContext
impl UnwindSafe for CrashContext
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