pub struct BreakpointLocation {
pub line: u64,
pub column: Option<u64>,
pub end_line: Option<u64>,
pub end_column: Option<u64>,
}
Expand description
Properties of a breakpoint location returned from the breakpointLocations
request.
Fields§
§line: u64
Start line of breakpoint location.
column: Option<u64>
The start position of a breakpoint location. Position is measured in UTF-16 code units and the client capability columnsStartAt1
determines whether it is 0- or 1-based.
end_line: Option<u64>
The end line of breakpoint location if the location covers a range.
end_column: Option<u64>
The end position of a breakpoint location (if the location covers a range). Position is measured in UTF-16 code units and the client capability columnsStartAt1
determines whether it is 0- or 1-based.
Trait Implementations§
Source§impl Clone for BreakpointLocation
impl Clone for BreakpointLocation
Source§fn clone(&self) -> BreakpointLocation
fn clone(&self) -> BreakpointLocation
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 BreakpointLocation
impl Debug for BreakpointLocation
Source§impl<'de> Deserialize<'de> for BreakpointLocation
impl<'de> Deserialize<'de> for BreakpointLocation
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 BreakpointLocation
impl RefUnwindSafe for BreakpointLocation
impl Send for BreakpointLocation
impl Sync for BreakpointLocation
impl Unpin for BreakpointLocation
impl UnwindSafe for BreakpointLocation
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