Struct sentry_rs::models::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,
    pub in_app: bool,
}

A Stackframe to Send to Sentry. Each attribute is described in detail HERE.

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.

Whether or not this error orginates "inside the app". E.g. not parts of rust itself. For us we use this as anything not in /buildslave/ + main

Trait Implementations

impl Clone for StackFrame
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for StackFrame
[src]

[src]

Formats the value using the given formatter.

impl Eq for StackFrame
[src]

impl PartialEq for StackFrame
[src]

[src]

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

[src]

This method tests for !=.