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

The number of variables to return. If count is missing or 0, all variables are returned.

Optional filter to limit the child variables to either named or indexed. If ommited, both types are fetched.

The index of the first variable to return; if omitted children start at 0.

The Variable reference.

Trait Implementations

impl Clone for VariablesArguments
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for VariablesArguments
[src]

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

This method tests for !=.

impl Debug for VariablesArguments
[src]

Formats the value using the given formatter.