Struct sentry_core::protocol::Stacktrace  
source · pub struct Stacktrace {
    pub frames: Vec<Frame, Global>,
    pub frames_omitted: Option<(u64, u64)>,
    pub registers: BTreeMap<String, RegVal, Global>,
}Expand description
Represents a stacktrace.
Fields§
§frames: Vec<Frame, Global>The list of frames in the stacktrace.
frames_omitted: Option<(u64, u64)>Optionally a segment of frames removed (start, end).
registers: BTreeMap<String, RegVal, Global>Optional register values of the thread.
Implementations§
source§impl Stacktrace
 
impl Stacktrace
sourcepub fn from_frames_reversed(frames: Vec<Frame, Global>) -> Option<Stacktrace>
 
pub fn from_frames_reversed(frames: Vec<Frame, Global>) -> Option<Stacktrace>
Optionally creates a stacktrace from a list of stack frames.
Trait Implementations§
source§impl Clone for Stacktrace
 
impl Clone for Stacktrace
source§fn clone(&self) -> Stacktrace
 
fn clone(&self) -> Stacktrace
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for Stacktrace
 
impl Debug for Stacktrace
source§impl Default for Stacktrace
 
impl Default for Stacktrace
source§fn default() -> Stacktrace
 
fn default() -> Stacktrace
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for Stacktrace
 
impl<'de> Deserialize<'de> for Stacktrace
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<Stacktrace, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>( __deserializer: __D ) -> Result<Stacktrace, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<Stacktrace> for Stacktrace
 
impl PartialEq<Stacktrace> for Stacktrace
source§fn eq(&self, other: &Stacktrace) -> bool
 
fn eq(&self, other: &Stacktrace) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for Stacktrace
 
impl Serialize for Stacktrace
source§fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more