Struct debugserver_types::SourceBreakpoint
[−]
[src]
pub struct SourceBreakpoint {
pub column: Option<i64>,
pub condition: Option<String>,
pub hit_condition: Option<String>,
pub line: i64,
}Properties of a breakpoint passed to the setBreakpoints request.
Fields
column: Option<i64>
An optional source column of the breakpoint.
condition: Option<String>
An optional expression for conditional breakpoints.
hit_condition: Option<String>
An optional expression that controls how many hits of the breakpoint are ignored. The backend is expected to interpret the expression as needed.
line: i64
The source line of the breakpoint.
Trait Implementations
impl Clone for SourceBreakpoint[src]
fn clone(&self) -> SourceBreakpoint[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 SourceBreakpoint[src]
fn eq(&self, __arg_0: &SourceBreakpoint) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &SourceBreakpoint) -> bool[src]
This method tests for !=.