Struct actix_tools::sentry::sentry_client::protocol::Stacktrace [−]
pub struct Stacktrace {
pub frames: Vec<Frame>,
pub frames_omitted: Option<(u64, u64)>,
pub registers: LinkedHashMap<String, RegVal, RandomState>,
}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: LinkedHashMap<String, RegVal, RandomState>
Optional register values of the thread.
Methods
impl Stacktrace
impl Stacktracepub 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
impl Serialize for Stacktrace
impl Serialize for Stacktracefn 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 Clone for Stacktrace
impl Clone for Stacktracefn clone(&self) -> Stacktrace
fn clone(&self) -> StacktraceReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Default for Stacktrace
impl Default for Stacktracefn default() -> Stacktrace
fn default() -> StacktraceReturns the "default value" for a type. Read more
impl Debug for Stacktrace
impl Debug for Stacktracefn fmt(&self, f: &mut Formatter) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl<'de> Deserialize<'de> for Stacktrace where
Stacktrace: Default,
impl<'de> Deserialize<'de> for Stacktrace where
Stacktrace: Default, 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 Stacktracefn eq(&self, other: &Stacktrace) -> bool
fn eq(&self, other: &Stacktrace) -> boolThis 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) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for Stacktrace
impl Send for Stacktraceimpl Sync for Stacktrace
impl Sync for Stacktrace