Struct actix_tools::sentry::sentry_client::protocol::InstructionInfo[]

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 Clone for InstructionInfo

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for InstructionInfo

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

impl Debug for InstructionInfo

Formats the value using the given formatter. Read more

impl Serialize for InstructionInfo

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for InstructionInfo

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<InstructionInfo> for InstructionInfo

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

This method tests for !=.

Auto Trait Implementations