Struct cdp::debugger::Location [] [src]

pub struct Location<'a> {
    pub script_id: ScriptId<'a>,
    pub line_number: i32,
    pub column_number: Option<i32>,
}

Location in the source code.

Fields

Script identifier as reported in the Debugger.scriptParsed.

Line number in the script (0-based).

Column number in the script (0-based).

Trait Implementations

impl<'a> Clone for Location<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for Location<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for Location<'a>
[src]

[src]

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

[src]

This method tests for !=.