pub struct CrashThread {
pub os_tid: u64,
pub frames: Vec<CrashFrame>,
}Expand description
One pre-captured thread in a crash report.
Fields§
§os_tid: u64OS thread id.
frames: Vec<CrashFrame>Unsymbolized, ASLR-stable frames, innermost first.
Trait Implementations§
Source§impl Clone for CrashThread
impl Clone for CrashThread
Source§fn clone(&self) -> CrashThread
fn clone(&self) -> CrashThread
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CrashThread
impl Debug for CrashThread
impl Eq for CrashThread
Source§impl PartialEq for CrashThread
impl PartialEq for CrashThread
impl StructuralPartialEq for CrashThread
Auto Trait Implementations§
impl Freeze for CrashThread
impl RefUnwindSafe for CrashThread
impl Send for CrashThread
impl Sync for CrashThread
impl Unpin for CrashThread
impl UnsafeUnpin for CrashThread
impl UnwindSafe for CrashThread
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