Struct sentry_rs::StackFrame [] [src]

pub struct StackFrame {
    pub filename: String,
    pub function: String,
    pub lineno: u32,
    pub pre_context: Vec<String>,
    pub post_context: Vec<String>,
    pub context_line: String,
}

A Stackframe to Send to Sentry.

Fields

The Filename that this StackFrame originated from.

The function this stackframe originated from.

The line number this stackframe originated from.

The lines that come before it for context.

The lines that come after the error line for context.

The line that through the error for context.

Trait Implementations

impl Clone for StackFrame
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StackFrame
[src]

Formats the value using the given formatter.