pub struct EvaluateArguments {
pub expression: String,
pub frame_id: Option<u64>,
pub context: Option<EvaluateArgumentsContext>,
pub format: Option<ValueFormat>,
}
Expand description
Arguments for evaluate
request.
Fields§
§expression: String
The expression to evaluate.
frame_id: Option<u64>
Evaluate the expression in the scope of this stack frame. If not specified, the expression is evaluated in the global scope.
context: Option<EvaluateArgumentsContext>
The context in which the evaluate request is used.
format: Option<ValueFormat>
Specifies details on how to format the result.
The attribute is only honored by a debug adapter if the corresponding capability supportsValueFormattingOptions
is true.
Trait Implementations§
Source§impl Clone for EvaluateArguments
impl Clone for EvaluateArguments
Source§fn clone(&self) -> EvaluateArguments
fn clone(&self) -> EvaluateArguments
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 EvaluateArguments
impl Debug for EvaluateArguments
Source§impl<'de> Deserialize<'de> for EvaluateArguments
impl<'de> Deserialize<'de> for EvaluateArguments
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
Auto Trait Implementations§
impl Freeze for EvaluateArguments
impl RefUnwindSafe for EvaluateArguments
impl Send for EvaluateArguments
impl Sync for EvaluateArguments
impl Unpin for EvaluateArguments
impl UnwindSafe for EvaluateArguments
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