Struct sentry_types::protocol::v7::AppleDebugImage[][src]

pub struct AppleDebugImage {
    pub name: String,
    pub arch: Option<String>,
    pub cpu_type: Option<u32>,
    pub cpu_subtype: Option<u32>,
    pub image_addr: Addr,
    pub image_size: u64,
    pub image_vmaddr: Addr,
    pub uuid: Uuid,
}

Represents an apple debug image in the debug meta.

Fields

The name of the debug image (usually filename)

The optional CPU architecture of the debug image.

Alternatively a macho cpu type.

Alternatively a macho cpu subtype.

The starting address of the image.

The size of the image in bytes.

The address where the image is loaded at runtime.

The unique UUID of the image.

Trait Implementations

impl Debug for AppleDebugImage
[src]

Formats the value using the given formatter. Read more

impl Clone for AppleDebugImage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AppleDebugImage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<AppleDebugImage> for DebugImage
[src]

Performs the conversion.

Auto Trait Implementations