pub struct DataBreakpointInfoArguments {
pub variables_reference: Option<i64>,
pub name: String,
pub frame_id: Option<i64>,
}Expand description
Arguments for a DataBreakpointInfo request.
Fields§
§variables_reference: Option<i64>Reference to the variable container if the data breakpoint is requested for
a child of the container. The variablesReference must have been obtained
in the current suspended state.
See Lifetime of Object References
in the Overview section of the specification for details.
name: StringThe name of the variable’s child to obtain data breakpoint information for.
If variablesReference isn’t specified, this can be an expression.
frame_id: Option<i64>When name is an expression, evaluate it in the scope of this stack frame.
If not specified, the expression is evaluated in the global scope. When
variablesReference is specified, this property has no effect.
Trait Implementations§
Source§impl Clone for DataBreakpointInfoArguments
impl Clone for DataBreakpointInfoArguments
Source§fn clone(&self) -> DataBreakpointInfoArguments
fn clone(&self) -> DataBreakpointInfoArguments
Returns a duplicate 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 Debug for DataBreakpointInfoArguments
impl Debug for DataBreakpointInfoArguments
Source§impl Default for DataBreakpointInfoArguments
impl Default for DataBreakpointInfoArguments
Source§fn default() -> DataBreakpointInfoArguments
fn default() -> DataBreakpointInfoArguments
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataBreakpointInfoArguments
impl<'de> Deserialize<'de> for DataBreakpointInfoArguments
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 DataBreakpointInfoArguments
impl RefUnwindSafe for DataBreakpointInfoArguments
impl Send for DataBreakpointInfoArguments
impl Sync for DataBreakpointInfoArguments
impl Unpin for DataBreakpointInfoArguments
impl UnsafeUnpin for DataBreakpointInfoArguments
impl UnwindSafe for DataBreakpointInfoArguments
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