Struct debugserver_types::VariablesArguments
[−]
[src]
pub struct VariablesArguments {
pub count: Option<i64>,
pub filter: Option<String>,
pub start: Option<i64>,
pub variables_reference: i64,
}Arguments for 'variables' request.
Fields
count: Option<i64>
The number of variables to return. If count is missing or 0, all variables are returned.
filter: Option<String>
Optional filter to limit the child variables to either named or indexed. If ommited, both types are fetched.
start: Option<i64>
The index of the first variable to return; if omitted children start at 0.
variables_reference: i64
The Variable reference.
Trait Implementations
impl Clone for VariablesArguments[src]
fn clone(&self) -> VariablesArguments
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 VariablesArguments[src]
fn eq(&self, __arg_0: &VariablesArguments) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &VariablesArguments) -> bool
This method tests for !=.