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

pub struct SymbolicDebugImage {
    pub name: String,
    pub arch: Option<String>,
    pub image_addr: Addr,
    pub image_size: u64,
    pub image_vmaddr: Addr,
    pub id: DebugId,
}

Represents a symbolic debug image.

Fields

name: String

The name of the debug image (usually filename)

arch: Option<String>

The optional CPU architecture of the debug image.

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.

id: DebugId

The unique debug id of the image.

Trait Implementations

impl Clone for SymbolicDebugImage[src]

impl Debug for SymbolicDebugImage[src]

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

impl From<SymbolicDebugImage> for DebugImage[src]

impl PartialEq<SymbolicDebugImage> for SymbolicDebugImage[src]

impl Serialize for SymbolicDebugImage[src]

impl StructuralPartialEq for SymbolicDebugImage[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.