[][src]Struct apple_crash_report_parser::Thread

pub struct Thread {
    pub id: u64,
    pub name: Option<String>,
    pub dispatch_queue: Option<String>,
    pub crashed: bool,
    pub frames: Vec<Frame>,
    pub registers: Option<BTreeMap<String, Addr>>,
}

A single thread in the crash.

Fields

id: u64

The ID (index) of the thread.

name: Option<String>

The name of the thread if available.

dispatch_queue: Option<String>

The name of the dispatch queue

crashed: bool

true if this thread crashed.

frames: Vec<Frame>

The list of frames

registers: Option<BTreeMap<String, Addr>>

A dump of all the registers of the thread if available.

Trait Implementations

impl Debug for Thread[src]

impl Serialize for Thread[src]

Auto Trait Implementations

impl Send for Thread

impl Sync for Thread

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]