Struct debugserver_types::EvaluateResponseBody
[−]
[src]
pub struct EvaluateResponseBody {
pub indexed_variables: Option<f64>,
pub named_variables: Option<f64>,
pub result: String,
pub type_: Option<String>,
pub variables_reference: f64,
}Fields
indexed_variables: Option<f64>
The number of indexed child variables. The client can use this optional information to present the variables in a paged UI and fetch them in chunks.
named_variables: Option<f64>
The number of named child variables. The client can use this optional information to present the variables in a paged UI and fetch them in chunks.
result: String
The result of the evaluate request.
type_: Option<String>
The optional type of the evaluate result.
variables_reference: f64
If variablesReference is > 0, the evaluate result is structured and its children can be retrieved by passing variablesReference to the VariablesRequest.
Trait Implementations
impl Clone for EvaluateResponseBody[src]
fn clone(&self) -> EvaluateResponseBody
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl PartialEq for EvaluateResponseBody[src]
fn eq(&self, __arg_0: &EvaluateResponseBody) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &EvaluateResponseBody) -> bool
This method tests for !=.