[][src]Struct debugserver_types::SetExpressionResponseBody

pub struct SetExpressionResponseBody {
    pub indexed_variables: Option<f64>,
    pub named_variables: Option<f64>,
    pub presentation_hint: Option<VariablePresentationHint>,
    pub type_: Option<String>,
    pub value: String,
    pub variables_reference: Option<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.

presentation_hint: Option<VariablePresentationHint>

Properties of a value that can be used to determine how to render the result in the UI.

type_: Option<String>

The optional type of the value.

value: String

The new value of the expression.

variables_reference: Option<f64>

If variablesReference is > 0, the value is structured and its children can be retrieved by passing variablesReference to the VariablesRequest.

Trait Implementations

impl PartialEq<SetExpressionResponseBody> for SetExpressionResponseBody[src]

impl Clone for SetExpressionResponseBody[src]

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

Performs copy-assignment from source. Read more

impl Debug for SetExpressionResponseBody[src]

impl Serialize for SetExpressionResponseBody[src]

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

Auto Trait Implementations

Blanket Implementations

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

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> 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]