pub struct ProtocolVariable {
pub name: String,
pub value: String,
pub type_: Option<String>,
pub variables_reference: i64,
pub named_variables: Option<i64>,
pub indexed_variables: Option<i64>,
}Expand description
A variable in the debuggee
Fields§
§name: StringVariable name
value: StringString representation of the variable value
type_: Option<String>Type of the variable
variables_reference: i64Reference for child variables (0 means no children)
named_variables: Option<i64>Number of named child variables
indexed_variables: Option<i64>Number of indexed child variables
Trait Implementations§
Source§impl Clone for ProtocolVariable
impl Clone for ProtocolVariable
Source§fn clone(&self) -> ProtocolVariable
fn clone(&self) -> ProtocolVariable
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 ProtocolVariable
impl Debug for ProtocolVariable
Source§impl<'de> Deserialize<'de> for ProtocolVariable
impl<'de> Deserialize<'de> for ProtocolVariable
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 ProtocolVariable
impl RefUnwindSafe for ProtocolVariable
impl Send for ProtocolVariable
impl Sync for ProtocolVariable
impl Unpin for ProtocolVariable
impl UnsafeUnpin for ProtocolVariable
impl UnwindSafe for ProtocolVariable
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