pub struct SetVariableResponseBody {
pub value: String,
pub type_: Option<String>,
pub variables_reference: i64,
}Expand description
Response body for setVariable request
Fields§
§value: StringNew string representation of the variable value
type_: Option<String>Type of the variable after setting
variables_reference: i64Reference for child variables (0 means no children)
Trait Implementations§
Source§impl Clone for SetVariableResponseBody
impl Clone for SetVariableResponseBody
Source§fn clone(&self) -> SetVariableResponseBody
fn clone(&self) -> SetVariableResponseBody
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 SetVariableResponseBody
impl Debug for SetVariableResponseBody
Source§impl<'de> Deserialize<'de> for SetVariableResponseBody
impl<'de> Deserialize<'de> for SetVariableResponseBody
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 SetVariableResponseBody
impl RefUnwindSafe for SetVariableResponseBody
impl Send for SetVariableResponseBody
impl Sync for SetVariableResponseBody
impl Unpin for SetVariableResponseBody
impl UnsafeUnpin for SetVariableResponseBody
impl UnwindSafe for SetVariableResponseBody
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