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>,
}Expand description
Represents a stacktrace.
Fields
frames: Vec<Frame>The list of frames in the stacktrace.
frames_omitted: Option<(u64, u64)>Optionally a segment of frames removed (start, end).
registers: Map<String, RegVal>Optional register values of the thread.
Implementations
Optionally creates a stacktrace from a list of stack frames.
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
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 RefUnwindSafe for Stacktraceimpl Send for Stacktraceimpl Sync for Stacktraceimpl Unpin for Stacktraceimpl UnwindSafe for StacktraceBlanket Implementations
Mutably borrows from an owned value. Read more