pub struct DataBreakpointInfoArguments {
pub variables_reference: Option<u64>,
pub name: String,
pub frame_id: Option<u64>,
pub mode: Option<String>,
}
Expand description
Arguments for dataBreakpointInfo
request.
Fields§
§variables_reference: Option<u64>
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 for details.
name: String
The 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<u64>
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.
mode: Option<String>
The mode of the desired breakpoint. If defined, this must be one of the breakpointModes
the debug adapter advertised in its Capabilities
.
Trait Implementations§
Source§impl Clone for DataBreakpointInfoArguments
impl Clone for DataBreakpointInfoArguments
Source§fn clone(&self) -> DataBreakpointInfoArguments
fn clone(&self) -> DataBreakpointInfoArguments
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more