[]Struct sentry_backtrace::Stacktrace

pub struct Stacktrace {
    pub frames: Vec<Frame>,
    pub frames_omitted: Option<(u64, u64)>,
    pub registers: BTreeMap<String, RegVal>,
}

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: BTreeMap<String, RegVal>

Optional register values of the thread.

Implementations

impl Stacktrace

pub fn from_frames_reversed(frames: Vec<Frame>) -> Option<Stacktrace>

Optionally creates a stacktrace from a list of stack frames.

Trait Implementations

impl Clone for Stacktrace

impl Debug for Stacktrace

impl Default for Stacktrace

impl<'de> Deserialize<'de> for Stacktrace

impl PartialEq<Stacktrace> for Stacktrace

impl Serialize for Stacktrace

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,