Struct sentry::protocol::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 PartialEq<SymbolicDebugImage> for SymbolicDebugImage
[src]

[src]

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

[src]

This method tests for !=.

impl From<SymbolicDebugImage> for DebugImage
[src]

[src]

Performs the conversion.

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for SymbolicDebugImage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for SymbolicDebugImage
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for SymbolicDebugImage
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations