pub struct BreakLocationBuilder { /* private fields */ }Available on crate features
Debugger and Runtime only.Implementations§
Source§impl BreakLocationBuilder
impl BreakLocationBuilder
Sourcepub fn script_id(&mut self, v: ScriptId) -> &mut Self
pub fn script_id(&mut self, v: ScriptId) -> &mut Self
Script identifier as reported in the Debugger.scriptParsed.
Sourcepub fn line_number(&mut self, v: u32) -> &mut Self
pub fn line_number(&mut self, v: u32) -> &mut Self
Line number in the script (0-based).
Sourcepub fn column_number(&mut self, v: u32) -> &mut Self
pub fn column_number(&mut self, v: u32) -> &mut Self
Column number in the script (0-based).
pub fn type(&mut self, v: BreakLocationType) -> &mut Self
pub fn build(&mut self) -> Result<BreakLocation, &'static str>
Trait Implementations§
Source§impl Clone for BreakLocationBuilder
impl Clone for BreakLocationBuilder
Source§fn clone(&self) -> BreakLocationBuilder
fn clone(&self) -> BreakLocationBuilder
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 BreakLocationBuilder
impl Debug for BreakLocationBuilder
Auto Trait Implementations§
impl Freeze for BreakLocationBuilder
impl RefUnwindSafe for BreakLocationBuilder
impl Send for BreakLocationBuilder
impl Sync for BreakLocationBuilder
impl Unpin for BreakLocationBuilder
impl UnwindSafe for BreakLocationBuilder
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