pub struct SetBreakpointsRequestArguments {
pub source: Source,
pub breakpoints: Vec<SourceBreakpoint>,
pub lines: Vec<i32>,
pub source_modified: bool,
/* private fields */
}
Fields§
§source: Source
The source location of the breakpoints; either ‘source.path’ or ‘source.reference’ must be specified.
breakpoints: Vec<SourceBreakpoint>
The code locations of the breakpoints.
lines: Vec<i32>
Deprecated: The code locations of the breakpoints.
source_modified: bool
A value of true indicates that the underlying source has been modified which results in new breakpoint locations.
Implementations§
Source§impl SetBreakpointsRequestArguments
impl SetBreakpointsRequestArguments
Sourcepub fn builder() -> SetBreakpointsRequestArgumentsBuilder<((), (), (), ())>
pub fn builder() -> SetBreakpointsRequestArgumentsBuilder<((), (), (), ())>
Create a builder for building SetBreakpointsRequestArguments
.
On the builder, call .source(...)
, .breakpoints(...)
(optional), .lines(...)
(optional), .source_modified(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of SetBreakpointsRequestArguments
.
Trait Implementations§
Source§impl Clone for SetBreakpointsRequestArguments
impl Clone for SetBreakpointsRequestArguments
Source§fn clone(&self) -> SetBreakpointsRequestArguments
fn clone(&self) -> SetBreakpointsRequestArguments
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<'de> Deserialize<'de> for SetBreakpointsRequestArguments
impl<'de> Deserialize<'de> for SetBreakpointsRequestArguments
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 From<SetBreakpointsRequestArguments> for ProtocolMessageContent
impl From<SetBreakpointsRequestArguments> for ProtocolMessageContent
Source§fn from(args: SetBreakpointsRequestArguments) -> Self
fn from(args: SetBreakpointsRequestArguments) -> Self
Converts to this type from the input type.
Source§impl From<SetBreakpointsRequestArguments> for Request
impl From<SetBreakpointsRequestArguments> for Request
Source§fn from(args: SetBreakpointsRequestArguments) -> Self
fn from(args: SetBreakpointsRequestArguments) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetBreakpointsRequestArguments
impl PartialEq for SetBreakpointsRequestArguments
Source§fn eq(&self, other: &SetBreakpointsRequestArguments) -> bool
fn eq(&self, other: &SetBreakpointsRequestArguments) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for SetBreakpointsRequestArguments
impl StructuralPartialEq for SetBreakpointsRequestArguments
Auto Trait Implementations§
impl Freeze for SetBreakpointsRequestArguments
impl RefUnwindSafe for SetBreakpointsRequestArguments
impl Send for SetBreakpointsRequestArguments
impl Sync for SetBreakpointsRequestArguments
impl Unpin for SetBreakpointsRequestArguments
impl UnwindSafe for SetBreakpointsRequestArguments
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.