Struct debugserver_types::SetBreakpointsArguments
[−]
[src]
pub struct SetBreakpointsArguments {
pub breakpoints: Option<Vec<SourceBreakpoint>>,
pub lines: Option<Vec<i64>>,
pub source: Source,
pub source_modified: Option<bool>,
}Arguments for 'setBreakpoints' request.
Fields
breakpoints: Option<Vec<SourceBreakpoint>>
The code locations of the breakpoints.
lines: Option<Vec<i64>>
Deprecated: The code locations of the breakpoints.
source: Source
The source location of the breakpoints; either source.path or source.reference must be specified.
source_modified: Option<bool>
A value of true indicates that the underlying source has been modified which results in new breakpoint locations.
Trait Implementations
impl Clone for SetBreakpointsArguments[src]
fn clone(&self) -> SetBreakpointsArguments[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for SetBreakpointsArguments[src]
fn eq(&self, __arg_0: &SetBreakpointsArguments) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &SetBreakpointsArguments) -> bool[src]
This method tests for !=.