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
context: Option<String>
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.
expression: String
The expression to evaluate.
frame_id: Option<i64>
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]
fn clone(&self) -> EvaluateArguments[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for EvaluateArguments[src]
fn eq(&self, __arg_0: &EvaluateArguments) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &EvaluateArguments) -> bool[src]
This method tests for !=.