pub struct SetFunctionBreakpointsArguments {
pub breakpoints: Vec<FunctionBreakpoint>,
}
Expand description
Arguments for ‘setFunctionBreakpoints’ request.
Fields§
§breakpoints: Vec<FunctionBreakpoint>
The function names of the breakpoints.
Trait Implementations§
Source§impl Clone for SetFunctionBreakpointsArguments
impl Clone for SetFunctionBreakpointsArguments
Source§fn clone(&self) -> SetFunctionBreakpointsArguments
fn clone(&self) -> SetFunctionBreakpointsArguments
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 SetFunctionBreakpointsArguments
impl<'de> Deserialize<'de> for SetFunctionBreakpointsArguments
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 SetFunctionBreakpointsArguments
impl PartialEq for SetFunctionBreakpointsArguments
Source§fn eq(&self, other: &SetFunctionBreakpointsArguments) -> bool
fn eq(&self, other: &SetFunctionBreakpointsArguments) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SetFunctionBreakpointsArguments
Auto Trait Implementations§
impl Freeze for SetFunctionBreakpointsArguments
impl RefUnwindSafe for SetFunctionBreakpointsArguments
impl Send for SetFunctionBreakpointsArguments
impl Sync for SetFunctionBreakpointsArguments
impl Unpin for SetFunctionBreakpointsArguments
impl UnwindSafe for SetFunctionBreakpointsArguments
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