pub struct SetExpressionArguments {
pub expression: String,
pub format: Option<ValueFormat>,
pub frame_id: Option<i64>,
pub value: String,
}
Expand description
Arguments for ‘setExpression’ request.
Fields§
§expression: String
The l-value expression to assign to.
format: Option<ValueFormat>
Specifies how the resulting value should be formatted.
frame_id: Option<i64>
Evaluate the expressions in the scope of this stack frame. If not specified, the expressions are evaluated in the global scope.
value: String
The value expression to assign to the l-value expression.
Trait Implementations§
Source§impl Clone for SetExpressionArguments
impl Clone for SetExpressionArguments
Source§fn clone(&self) -> SetExpressionArguments
fn clone(&self) -> SetExpressionArguments
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 SetExpressionArguments
impl Debug for SetExpressionArguments
Source§impl<'de> Deserialize<'de> for SetExpressionArguments
impl<'de> Deserialize<'de> for SetExpressionArguments
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 SetExpressionArguments
impl PartialEq for SetExpressionArguments
Source§impl Serialize for SetExpressionArguments
impl Serialize for SetExpressionArguments
impl StructuralPartialEq for SetExpressionArguments
Auto Trait Implementations§
impl Freeze for SetExpressionArguments
impl RefUnwindSafe for SetExpressionArguments
impl Send for SetExpressionArguments
impl Sync for SetExpressionArguments
impl Unpin for SetExpressionArguments
impl UnwindSafe for SetExpressionArguments
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