Struct google_clouddebugger2::StackFrame [] [src]

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

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.

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

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

Source location of the call site.

Trait Implementations

impl Default for StackFrame
[src]

[src]

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

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 Part for StackFrame
[src]