[][src]Struct debugserver_types::GotoTarget

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

column: Option<i64>

An optional column of the goto target.

end_column: Option<i64>

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

end_line: Option<i64>

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

id: i64

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

label: String

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

line: i64

The line of the goto target.

Trait Implementations

impl PartialEq<GotoTarget> for GotoTarget[src]

impl Clone for GotoTarget[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for GotoTarget[src]

impl Serialize for GotoTarget[src]

impl<'de> Deserialize<'de> for GotoTarget[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]