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

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 Debug for SymbolicDebugImage
[src]

Formats the value using the given formatter. Read more

impl Clone for SymbolicDebugImage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SymbolicDebugImage
[src]

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
[src]

Performs the conversion.

Auto Trait Implementations