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