Struct actix_tools::sentry::sentry_client::protocol::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

The name of the debug image (usually filename)

The optional CPU architecture of the debug image.

The starting address of the image.

The size of the image in bytes.

The address where the image is loaded at runtime.

The unique debug id of the image.

Trait Implementations

impl Serialize for SymbolicDebugImage

Serialize this value into the given Serde serializer. Read more

impl Clone for SymbolicDebugImage

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SymbolicDebugImage

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for SymbolicDebugImage

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<SymbolicDebugImage> for SymbolicDebugImage

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

This method tests for !=.

impl From<SymbolicDebugImage> for DebugImage

Performs the conversion.

Auto Trait Implementations