Struct sentry_types::protocol::v7::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 Debug for InstructionInfo
[src]

Formats the value using the given formatter. Read more

impl Default for InstructionInfo
[src]

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

impl Clone for InstructionInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InstructionInfo
[src]

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

This method tests for !=.

Auto Trait Implementations