[][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> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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