pub struct SetBreakpointsArguments {
pub breakpoints: Option<Vec<SourceBreakpoint>>,
pub lines: Option<Vec<i64>>,
pub source: Source,
pub source_modified: Option<bool>,
}
Expand description
Arguments for ‘setBreakpoints’ request.
Fields§
§breakpoints: Option<Vec<SourceBreakpoint>>
The code locations of the breakpoints.
lines: Option<Vec<i64>>
Deprecated: The code locations of the breakpoints.
source: Source
The source location of the breakpoints; either ‘source.path’ or ‘source.reference’ must be specified.
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 copy 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
Source§impl PartialEq for SetBreakpointsArguments
impl PartialEq for SetBreakpointsArguments
Source§impl Serialize for SetBreakpointsArguments
impl Serialize for SetBreakpointsArguments
impl StructuralPartialEq for SetBreakpointsArguments
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