[][src]Struct debugserver_types::VariablesArguments

pub struct VariablesArguments {
    pub count: Option<i64>,
    pub filter: Option<String>,
    pub format: Option<ValueFormat>,
    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.

format: Option<ValueFormat>

Specifies details on how to format the Variable values.

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 PartialEq<VariablesArguments> for VariablesArguments[src]

impl Clone for VariablesArguments[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for VariablesArguments[src]

impl Serialize for VariablesArguments[src]

impl<'de> Deserialize<'de> for VariablesArguments[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]