[][src]Struct apple_crash_report_parser::BinaryImage

pub struct BinaryImage {
    pub addr: Addr,
    pub size: u64,
    pub uuid: Uuid,
    pub arch: String,
    pub version: Option<String>,
    pub name: String,
    pub path: String,
}

A single binary image in the crash.

Fields

addr: Addr

The address of the image,

size: u64

The size of the image,

uuid: Uuid

The unique ID of the image,

arch: String

The architecture of the image,

version: Option<String>

The version of the image if available. This might require further parsing.

name: String

The short name of the image.

path: String

The full path of the image.

Trait Implementations

impl Debug for BinaryImage
[src]

impl Serialize for BinaryImage
[src]

Auto Trait Implementations

impl Send for BinaryImage

impl Sync for BinaryImage

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]