pub struct SetExpressionResponseBody {
pub value: String,
pub type_: Option<String>,
pub variables_reference: i64,
}Expand description
Response body for setExpression request
Fields§
§value: StringThe new value of the expression
type_: Option<String>The type of the value
variables_reference: i64Reference for structured result (0 means no children)
Trait Implementations§
Source§impl Clone for SetExpressionResponseBody
impl Clone for SetExpressionResponseBody
Source§fn clone(&self) -> SetExpressionResponseBody
fn clone(&self) -> SetExpressionResponseBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SetExpressionResponseBody
impl Debug for SetExpressionResponseBody
Source§impl<'de> Deserialize<'de> for SetExpressionResponseBody
impl<'de> Deserialize<'de> for SetExpressionResponseBody
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 SetExpressionResponseBody
impl RefUnwindSafe for SetExpressionResponseBody
impl Send for SetExpressionResponseBody
impl Sync for SetExpressionResponseBody
impl Unpin for SetExpressionResponseBody
impl UnsafeUnpin for SetExpressionResponseBody
impl UnwindSafe for SetExpressionResponseBody
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