Struct debugserver_types::GotoTarget [] [src]

pub struct GotoTarget {
    pub column: Option<i64>,
    pub end_column: Option<i64>,
    pub end_line: Option<i64>,
    pub id: i64,
    pub label: String,
    pub line: i64,
}

A GotoTarget describes a code location that can be used as a target in the 'goto' request. The possible goto targets can be determined via the 'gotoTargets' request.

Fields

An optional column of the goto target.

An optional end column of the range covered by the goto target.

An optional end line of the range covered by the goto target.

Unique identifier for a goto target. This is used in the goto request.

The name of the goto target (shown in the UI).

The line of the goto target.

Trait Implementations

impl Clone for GotoTarget
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for GotoTarget
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for GotoTarget
[src]

[src]

Formats the value using the given formatter.