[][src]Struct apple_crash_report_parser::AppleCrashReport

pub struct AppleCrashReport {
    pub incident_identifier: Uuid,
    pub timestamp: Option<DateTime<Utc>>,
    pub code_type: Option<String>,
    pub path: Option<String>,
    pub application_specific_information: Option<String>,
    pub filtered_syslog: Option<String>,
    pub report_version: u32,
    pub metadata: BTreeMap<String, String>,
    pub threads: Vec<Thread>,
    pub binary_images: Vec<BinaryImage>,
}

Holds a parsed apple crash report.

Fields

incident_identifier: Uuid

The unique crash ID.

timestamp: Option<DateTime<Utc>>

The timestamp of the crash.

code_type: Option<String>

The architecture of the crash (might require further parsing)

path: Option<String>

The path to the application.

application_specific_information: Option<String>

Optional application specific crash information as string.

filtered_syslog: Option<String>

Optional syslog info

report_version: u32

The internal report version.

metadata: BTreeMap<String, String>

Extra metdata.

threads: Vec<Thread>

A list of threads.

binary_images: Vec<BinaryImage>

A list of referenced binary images.

Methods

impl AppleCrashReport
[src]

pub fn from_reader<R: Read>(r: R) -> Result<AppleCrashReport, ParseError>
[src]

Consumes a reader and parses it.

Trait Implementations

impl Default for AppleCrashReport
[src]

impl Debug for AppleCrashReport
[src]

impl FromStr for AppleCrashReport
[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl Serialize for AppleCrashReport
[src]

Auto Trait Implementations

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]