pub enum SetExpression {}
Expand description
Evaluates the given value
expression and assigns it to the expression
which must be a modifiable l-value.
The expressions have access to any variables and arguments that are in scope of the specified frame.
Clients should only call this request if the corresponding capability supportsSetExpression
is true.
If a debug adapter implements both setExpression
and setVariable
, a client uses setExpression
if the variable has an evaluateName
property.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SetExpression
impl RefUnwindSafe for SetExpression
impl Send for SetExpression
impl Sync for SetExpression
impl Unpin for SetExpression
impl UnwindSafe for SetExpression
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