Struct sentry_backtrace::Stacktrace
[−]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
impl Stacktrace
impl Stacktrace
pub 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
impl Clone for Stacktrace
impl Clone for Stacktrace
fn 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
impl Debug for Stacktrace
impl Debug for Stacktrace
impl Default for Stacktrace
impl Default for Stacktrace
fn default() -> Stacktrace
fn default() -> Stacktrace
Returns the “default value” for a type. Read more
impl<'de> Deserialize<'de> for Stacktrace
impl<'de> Deserialize<'de> for Stacktrace
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
impl PartialEq<Stacktrace> for Stacktrace
impl PartialEq<Stacktrace> for Stacktrace
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 ==
. Read more
fn ne(&self, other: &Stacktrace) -> bool
fn ne(&self, other: &Stacktrace) -> bool
This method tests for !=
.
impl Serialize for Stacktrace
impl Serialize for Stacktrace
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
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