Struct sentry_types::protocol::v7::Stacktrace[][src]

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

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
[src]

Optionally creates a stacktrace from a list of stack frames.

Trait Implementations

impl Debug for Stacktrace
[src]

Formats the value using the given formatter. Read more

impl Default for Stacktrace
[src]

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

impl Clone for Stacktrace
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Stacktrace
[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

impl Send for Stacktrace

impl Sync for Stacktrace