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

pub struct Stacktrace {
    pub frames: Vec<Frame>,
    pub frames_omitted: Option<(u64, u64)>,
    pub registers: LinkedHashMap<String, RegVal, RandomState>,
}

Represents a stacktrace.

Fields

The list of frames in the stacktrace.

Optionally a segment of frames removed (start, end).

Optional register values of the thread.

Methods

impl Stacktrace

Optionally creates a stacktrace from a list of stack frames.

Trait Implementations

impl Serialize for Stacktrace

Serialize this value into the given Serde serializer. Read more

impl Clone for Stacktrace

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Stacktrace

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

impl Debug for Stacktrace

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for Stacktrace where
    Stacktrace: Default

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<Stacktrace> for Stacktrace

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

This method tests for !=.

Auto Trait Implementations

impl Send for Stacktrace

impl Sync for Stacktrace