pub struct SetExpressionRequestArguments {
pub expression: String,
pub value: String,
pub frame_id: Option<i32>,
pub format: Option<ValueFormat>,
/* private fields */
}
Fields§
§expression: String
The l-value expression to assign to.
value: String
The value expression to assign to the l-value expression.
frame_id: Option<i32>
Evaluate the expressions in the scope of this stack frame. If not specified, the expressions are evaluated in the global scope.
format: Option<ValueFormat>
Specifies how the resulting value should be formatted.
Implementations§
Source§impl SetExpressionRequestArguments
impl SetExpressionRequestArguments
Sourcepub fn builder() -> SetExpressionRequestArgumentsBuilder<((), (), (), ())>
pub fn builder() -> SetExpressionRequestArgumentsBuilder<((), (), (), ())>
Create a builder for building SetExpressionRequestArguments
.
On the builder, call .expression(...)
, .value(...)
, .frame_id(...)
(optional), .format(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of SetExpressionRequestArguments
.
Trait Implementations§
Source§impl Clone for SetExpressionRequestArguments
impl Clone for SetExpressionRequestArguments
Source§fn clone(&self) -> SetExpressionRequestArguments
fn clone(&self) -> SetExpressionRequestArguments
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<'de> Deserialize<'de> for SetExpressionRequestArguments
impl<'de> Deserialize<'de> for SetExpressionRequestArguments
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 From<SetExpressionRequestArguments> for ProtocolMessageContent
impl From<SetExpressionRequestArguments> for ProtocolMessageContent
Source§fn from(args: SetExpressionRequestArguments) -> Self
fn from(args: SetExpressionRequestArguments) -> Self
Converts to this type from the input type.
Source§impl From<SetExpressionRequestArguments> for Request
impl From<SetExpressionRequestArguments> for Request
Source§fn from(args: SetExpressionRequestArguments) -> Self
fn from(args: SetExpressionRequestArguments) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetExpressionRequestArguments
impl PartialEq for SetExpressionRequestArguments
Source§fn eq(&self, other: &SetExpressionRequestArguments) -> bool
fn eq(&self, other: &SetExpressionRequestArguments) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for SetExpressionRequestArguments
impl StructuralPartialEq for SetExpressionRequestArguments
Auto Trait Implementations§
impl Freeze for SetExpressionRequestArguments
impl RefUnwindSafe for SetExpressionRequestArguments
impl Send for SetExpressionRequestArguments
impl Sync for SetExpressionRequestArguments
impl Unpin for SetExpressionRequestArguments
impl UnwindSafe for SetExpressionRequestArguments
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.