pub struct EvaluateResponseBody {
pub indexed_variables: Option<f64>,
pub named_variables: Option<f64>,
pub presentation_hint: Option<VariablePresentationHint>,
pub result: String,
pub type_: Option<String>,
pub variables_reference: 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 evaluate result that can be used to determine how to render the result in the UI.
result: String
The result of the evaluate request.
type_: Option<String>
The optional type of the evaluate result.
variables_reference: f64
If variablesReference is > 0, the evaluate result is structured and its children can be retrieved by passing variablesReference to the VariablesRequest.
Trait Implementations§
Source§impl Clone for EvaluateResponseBody
impl Clone for EvaluateResponseBody
Source§fn clone(&self) -> EvaluateResponseBody
fn clone(&self) -> EvaluateResponseBody
Returns a duplicate 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 EvaluateResponseBody
impl Debug for EvaluateResponseBody
Source§impl<'de> Deserialize<'de> for EvaluateResponseBody
impl<'de> Deserialize<'de> for EvaluateResponseBody
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 EvaluateResponseBody
impl PartialEq for EvaluateResponseBody
Source§impl Serialize for EvaluateResponseBody
impl Serialize for EvaluateResponseBody
impl StructuralPartialEq for EvaluateResponseBody
Auto Trait Implementations§
impl Freeze for EvaluateResponseBody
impl RefUnwindSafe for EvaluateResponseBody
impl Send for EvaluateResponseBody
impl Sync for EvaluateResponseBody
impl Unpin for EvaluateResponseBody
impl UnwindSafe for EvaluateResponseBody
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