pub struct SetVariableResponseBody {
pub indexed_variables: Option<f64>,
pub named_variables: Option<f64>,
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.
type_: Option<String>
The type of the new value. Typically shown in the UI when hovering over the value.
value: String
The new value of the variable.
variables_reference: Option<f64>
If variablesReference is > 0, the new value is structured and its children can be retrieved by passing variablesReference to the VariablesRequest.
Trait Implementations§
Source§impl Clone for SetVariableResponseBody
impl Clone for SetVariableResponseBody
Source§fn clone(&self) -> SetVariableResponseBody
fn clone(&self) -> SetVariableResponseBody
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 SetVariableResponseBody
impl Debug for SetVariableResponseBody
Source§impl<'de> Deserialize<'de> for SetVariableResponseBody
impl<'de> Deserialize<'de> for SetVariableResponseBody
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
Source§impl PartialEq for SetVariableResponseBody
impl PartialEq for SetVariableResponseBody
Source§impl Serialize for SetVariableResponseBody
impl Serialize for SetVariableResponseBody
impl StructuralPartialEq for SetVariableResponseBody
Auto Trait Implementations§
impl Freeze for SetVariableResponseBody
impl RefUnwindSafe for SetVariableResponseBody
impl Send for SetVariableResponseBody
impl Sync for SetVariableResponseBody
impl Unpin for SetVariableResponseBody
impl UnwindSafe for SetVariableResponseBody
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