Struct sentry_types::protocol::v7::Stacktrace   
source · [−]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
sourceimpl Stacktrace
 
impl Stacktrace
sourcepub fn from_frames_reversed(frames: Vec<Frame>) -> Option<Stacktrace>
 
pub fn from_frames_reversed(frames: Vec<Frame>) -> Option<Stacktrace>
Optionally creates a stacktrace from a list of stack frames.
Trait Implementations
sourceimpl Clone for Stacktrace
 
impl Clone for Stacktrace
sourcefn clone(&self) -> Stacktrace
 
fn clone(&self) -> Stacktrace
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for Stacktrace
 
impl Debug for Stacktrace
sourceimpl Default for Stacktrace
 
impl Default for Stacktrace
sourcefn default() -> Stacktrace
 
fn default() -> Stacktrace
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for Stacktrace
 
impl<'de> Deserialize<'de> for Stacktrace
sourcefn 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
sourceimpl PartialEq<Stacktrace> for Stacktrace
 
impl PartialEq<Stacktrace> for Stacktrace
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &Stacktrace) -> bool
 
fn ne(&self, other: &Stacktrace) -> bool
This method tests for !=.
sourceimpl Serialize for Stacktrace
 
impl Serialize for Stacktrace
impl StructuralPartialEq for Stacktrace
Auto Trait Implementations
impl RefUnwindSafe for Stacktrace
impl Send for Stacktrace
impl Sync for Stacktrace
impl Unpin for Stacktrace
impl UnwindSafe for Stacktrace
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
