[][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, 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]