Struct debugserver_types::EvaluateArguments [] [src]

pub struct EvaluateArguments {
    pub context: Option<String>,
    pub expression: String,
    pub frame_id: Option<i64>,
}

Arguments for 'evaluate' request.

Fields

The context in which the evaluate request is run. Possible values are 'watch' if evaluate is run in a watch, 'repl' if run from the REPL console, or 'hover' if run from a data hover.

The expression to evaluate.

Evaluate the expression in the scope of this stack frame. If not specified, the expression is evaluated in the global scope.

Trait Implementations

impl Clone for EvaluateArguments
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for EvaluateArguments
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for EvaluateArguments
[src]

[src]

Formats the value using the given formatter.