pub struct BreakLocation { /* private fields */ }Available on crate features
Debugger and Runtime only.Implementations§
Source§impl BreakLocation
impl BreakLocation
pub fn builder() -> BreakLocationBuilder
Sourcepub fn script_id(&self) -> &ScriptId
pub fn script_id(&self) -> &ScriptId
Script identifier as reported in the Debugger.scriptParsed.
Sourcepub fn line_number(&self) -> u32
pub fn line_number(&self) -> u32
Line number in the script (0-based).
Sourcepub fn column_number(&self) -> Option<&u32>
pub fn column_number(&self) -> Option<&u32>
Column number in the script (0-based).
pub fn type(&self) -> Option<&BreakLocationType>
Trait Implementations§
Source§impl Clone for BreakLocation
impl Clone for BreakLocation
Source§fn clone(&self) -> BreakLocation
fn clone(&self) -> BreakLocation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BreakLocation
impl Debug for BreakLocation
Source§impl<'de> Deserialize<'de> for BreakLocation
impl<'de> Deserialize<'de> for BreakLocation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BreakLocation
impl RefUnwindSafe for BreakLocation
impl Send for BreakLocation
impl Sync for BreakLocation
impl Unpin for BreakLocation
impl UnwindSafe for BreakLocation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more