Struct actix_tools::sentry::sentry_client::protocol::AppleDebugImage[]

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 Serialize for AppleDebugImage

Serialize this value into the given Serde serializer. Read more

impl Clone for AppleDebugImage

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AppleDebugImage

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for AppleDebugImage

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<AppleDebugImage> for AppleDebugImage

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

Performs the conversion.

Auto Trait Implementations