Struct sentry::protocol::InstructionInfo [] [src]

pub struct InstructionInfo {
    pub image_addr: Option<Addr>,
    pub instruction_addr: Option<Addr>,
    pub symbol_addr: Option<Addr>,
}

Represents instruction information.

Fields

If known the location of the image.

If known the location of the instruction.

If known the location of symbol.

Trait Implementations

impl PartialEq<InstructionInfo> for InstructionInfo
[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<'de> Deserialize<'de> for InstructionInfo
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for InstructionInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for InstructionInfo
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for InstructionInfo
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for InstructionInfo
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations