[]Struct sentry::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

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

impl Debug for AppleDebugImage

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

impl From<AppleDebugImage> for DebugImage

impl PartialEq<AppleDebugImage> for AppleDebugImage

impl Serialize for AppleDebugImage

impl StructuralPartialEq for AppleDebugImage

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

impl<T> Serialize for T where
    T: Serialize + ?Sized
[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>, 

impl<T> WithSubscriber for T[src]