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§
Source§impl Clone for SetExpressionResponseBody
impl Clone for SetExpressionResponseBody
Source§fn clone(&self) -> SetExpressionResponseBody
fn clone(&self) -> SetExpressionResponseBody
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SetExpressionResponseBody
impl Debug for SetExpressionResponseBody
Source§impl<'de> Deserialize<'de> for SetExpressionResponseBody
impl<'de> Deserialize<'de> for SetExpressionResponseBody
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for SetExpressionResponseBody
Auto Trait Implementations§
impl Freeze for SetExpressionResponseBody
impl RefUnwindSafe for SetExpressionResponseBody
impl Send for SetExpressionResponseBody
impl Sync for SetExpressionResponseBody
impl Unpin for SetExpressionResponseBody
impl UnwindSafe for SetExpressionResponseBody
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more