Struct sentry_types::protocol::v7::Frame[][src]

pub struct Frame {
    pub function: Option<String>,
    pub symbol: Option<String>,
    pub module: Option<String>,
    pub package: Option<String>,
    pub filename: Option<String>,
    pub abs_path: Option<String>,
    pub lineno: Option<u64>,
    pub colno: Option<u64>,
    pub pre_context: Vec<String>,
    pub context_line: Option<String>,
    pub post_context: Vec<String>,
    pub in_app: Option<bool>,
    pub vars: Map<String, Value>,
    pub image_addr: Option<Addr>,
    pub instruction_addr: Option<Addr>,
    pub symbol_addr: Option<Addr>,
}

Represents a frame.

Fields

The name of the function is known.

Note that this might include the name of a class as well if that makes sense for the language.

The potentially mangled name of the symbol as it appears in an executable.

This is different from a function name by generally being the mangled name that appears natively in the binary. This is relevant for languages like Swift, C++ or Rust.

The name of the module the frame is contained in.

Note that this might also include a class name if that is something the language natively considers to be part of the stack (for instance in Java).

The name of the package that contains the frame.

For instance this can be a dylib for native languages, the name of the jar or .NET assembly.

The filename (basename only).

If known the absolute path.

The line number if known.

The column number if known.

The sources of the lines leading up to the current line.

The current line as source.

The sources of the lines after the current line.

In-app indicator.

Optional local variables.

If known the location of the image.

If known the location of the instruction.

If known the location of symbol.

Trait Implementations

impl Default for Frame
[src]

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

impl Clone for Frame
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Frame
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Frame
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Frame

impl Sync for Frame