Struct sentry::protocol::Stacktrace [] [src]

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

Represents a stacktrace.

Fields

The list of frames in the stacktrace.

Optionally a segment of frames removed (start, end)

Methods

impl Stacktrace
[src]

[src]

Optionally creates a stacktrace from a list of stack frames.

Trait Implementations

impl PartialEq<Stacktrace> for Stacktrace
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'de> Deserialize<'de> for Stacktrace
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for Stacktrace
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for Stacktrace
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for Stacktrace
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for Stacktrace
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for Stacktrace

impl Sync for Stacktrace