pub struct SetBreakpointsArguments {
pub source: Source,
pub breakpoints: Option<Vec<SourceBreakpoint>>,
pub lines: Option<Vec<u64>>,
pub source_modified: Option<bool>,
}
Expand description
Arguments for setBreakpoints
request.
Fields§
§source: Source
The source location of the breakpoints; either source.path
or source.sourceReference
must be specified.
breakpoints: Option<Vec<SourceBreakpoint>>
The code locations of the breakpoints.
lines: Option<Vec<u64>>
Deprecated: The code locations of the breakpoints.
source_modified: Option<bool>
A value of true indicates that the underlying source has been modified which results in new breakpoint locations.
Trait Implementations§
Source§impl Clone for SetBreakpointsArguments
impl Clone for SetBreakpointsArguments
Source§fn clone(&self) -> SetBreakpointsArguments
fn clone(&self) -> SetBreakpointsArguments
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 SetBreakpointsArguments
impl Debug for SetBreakpointsArguments
Source§impl<'de> Deserialize<'de> for SetBreakpointsArguments
impl<'de> Deserialize<'de> for SetBreakpointsArguments
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 SetBreakpointsArguments
impl RefUnwindSafe for SetBreakpointsArguments
impl Send for SetBreakpointsArguments
impl Sync for SetBreakpointsArguments
impl Unpin for SetBreakpointsArguments
impl UnwindSafe for SetBreakpointsArguments
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