Struct cdp::debugger::BreakLocation
[−]
[src]
pub struct BreakLocation<'a> { pub script_id: ScriptId<'a>, pub line_number: i32, pub column_number: Option<i32>, pub ty: Option<BreakLocationType>, }
[Experimental]
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).
ty: Option<BreakLocationType>
Trait Implementations
impl<'a> Clone for BreakLocation<'a>
[src]
fn clone(&self) -> BreakLocation<'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
impl<'a> Debug for BreakLocation<'a>
[src]
impl<'a> PartialEq for BreakLocation<'a>
[src]
fn eq(&self, __arg_0: &BreakLocation<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &BreakLocation<'a>) -> bool
[src]
This method tests for !=
.