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_id: ScriptId<'a>
Script identifier as reported in the Debugger.scriptParsed
.
line_number: i32
Line number in the script (0-based).
column_number: Option<i32>
Column number in the script (0-based).
Trait Implementations
impl<'a> Clone for Location<'a>
[src]
fn clone(&self) -> Location<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more