pub struct SetExceptionBreakpointsResponse {
pub breakpoints: Option<Vec<Breakpoint>>,
}Fields§
§breakpoints: Option<Vec<Breakpoint>>Information about the exception breakpoints or filters.
The breakpoints returned are in the same order as the elements of the
filters, filterOptions, exceptionOptions arrays in the arguments.
If both filters and filterOptions are given, the returned array must
start with filters information first, followed by filterOptions
information.
Trait Implementations§
Source§impl Clone for SetExceptionBreakpointsResponse
impl Clone for SetExceptionBreakpointsResponse
Source§fn clone(&self) -> SetExceptionBreakpointsResponse
fn clone(&self) -> SetExceptionBreakpointsResponse
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 Default for SetExceptionBreakpointsResponse
impl Default for SetExceptionBreakpointsResponse
Source§fn default() -> SetExceptionBreakpointsResponse
fn default() -> SetExceptionBreakpointsResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SetExceptionBreakpointsResponse
impl RefUnwindSafe for SetExceptionBreakpointsResponse
impl Send for SetExceptionBreakpointsResponse
impl Sync for SetExceptionBreakpointsResponse
impl Unpin for SetExceptionBreakpointsResponse
impl UnsafeUnpin for SetExceptionBreakpointsResponse
impl UnwindSafe for SetExceptionBreakpointsResponse
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