Struct google_clouddebugger2::StackFrame [] [src]

pub struct StackFrame {
    pub function: Option<String>,
    pub location: Option<SourceLocation>,
    pub locals: Option<Vec<Variable>>,
    pub arguments: Option<Vec<Variable>>,
}

Represents a stack frame context.

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

Fields

Demangled function name at the call site.

Source location of the call site.

Set of local variables at the stack frame location. Note that this might not be populated for all stack frames.

Set of arguments passed to this function. Note that this might not be populated for all stack frames.

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.

impl Part for StackFrame
[src]