Struct google_cloudtrace2::StackFrame[][src]

pub struct StackFrame {
    pub original_function_name: Option<TruncatableString>,
    pub column_number: Option<String>,
    pub function_name: Option<TruncatableString>,
    pub load_module: Option<Module>,
    pub line_number: Option<String>,
    pub source_version: Option<TruncatableString>,
    pub file_name: Option<TruncatableString>,
}

Represents a single stack frame in a stack trace.

This type is not used in any activity, and only used as part of another schema.

Fields

An un-mangled function name, if function_name is mangled. The name can be fully-qualified (up to 1024 bytes).

The column number where the function call appears, if available. This is important in JavaScript because of its anonymous functions.

The fully-qualified name that uniquely identifies the function or method that is active in this frame (up to 1024 bytes).

The binary module from where the code was loaded.

The line number in file_name where the function call appears.

The version of the deployed source code (up to 128 bytes).

The name of the source file where the function call appears (up to 256 bytes).

Trait Implementations

impl Default for StackFrame
[src]

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

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. Read more

impl Part for StackFrame
[src]

Auto Trait Implementations

impl Send for StackFrame

impl Sync for StackFrame