Struct debugserver_types::Breakpoint [] [src]

pub struct Breakpoint {
    pub column: Option<i64>,
    pub end_column: Option<i64>,
    pub end_line: Option<i64>,
    pub id: Option<i64>,
    pub line: Option<i64>,
    pub message: Option<String>,
    pub source: Option<Source>,
    pub verified: bool,
}

Information about a Breakpoint created in setBreakpoints or setFunctionBreakpoints.

Fields

An optional start column of the actual range covered by the breakpoint.

An optional end column of the actual range covered by the breakpoint. If no end line is given, then the end column is assumed to be in the start line.

An optional end line of the actual range covered by the breakpoint.

An optional unique identifier for the breakpoint.

The start line of the actual range covered by the breakpoint.

An optional message about the state of the breakpoint. This is shown to the user and can be used to explain why a breakpoint could not be verified.

The source where the breakpoint is located.

If true breakpoint could be set (but not necessarily at the desired location).

Trait Implementations

impl Clone for Breakpoint
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Breakpoint
[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 Breakpoint
[src]

Formats the value using the given formatter.