[][src]Struct sentry_core::types::protocol::v7::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

name: String

The name of the debug image (usually filename)

arch: Option<String>

The optional CPU architecture of the debug image.

cpu_type: Option<u32>

Alternatively a macho cpu type.

cpu_subtype: Option<u32>

Alternatively a macho cpu subtype.

image_addr: Addr

The starting address of the image.

image_size: u64

The size of the image in bytes.

image_vmaddr: Addr

The address where the image is loaded at runtime.

uuid: Uuid

The unique UUID of the image.

Trait Implementations

impl Clone for AppleDebugImage[src]

impl Debug for AppleDebugImage[src]

impl<'de> Deserialize<'de> for AppleDebugImage[src]

impl From<AppleDebugImage> for DebugImage[src]

impl PartialEq<AppleDebugImage> for AppleDebugImage[src]

impl Serialize for AppleDebugImage[src]

impl StructuralPartialEq for AppleDebugImage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,