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

An optional source column of the breakpoint.

An optional expression for conditional breakpoints.

An optional expression that controls how many hits of the breakpoint are ignored. The backend is expected to interpret the expression as needed.

The source line of the breakpoint.

Trait Implementations

impl Clone for SourceBreakpoint
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SourceBreakpoint
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for SourceBreakpoint
[src]

Formats the value using the given formatter.