pub struct BreakLocation {
pub scriptId: ScriptId,
pub lineNumber: i64,
pub columnNumber: Option<i64>,
pub type_: Option<String>,
}Fields§
§scriptId: ScriptIdScript identifier as reported in the ‘Debugger.scriptParsed’.
lineNumber: i64Line number in the script (0-based).
columnNumber: Option<i64>Column number in the script (0-based).
type_: Option<String>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 Default for BreakLocation
impl Default for BreakLocation
Source§fn default() -> BreakLocation
fn default() -> BreakLocation
Returns the “default value” for a type. Read more
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 UnsafeUnpin 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