pub enum SetExceptionBreakpoints {}
Expand description
The request configures the debugger’s response to thrown exceptions. Each of the filters
, filterOptions
, and exceptionOptions
in the request are independent configurations to a debug adapter indicating a kind of exception to catch. An exception thrown in a program should result in a stopped
event from the debug adapter (with reason exception
) if any of the configured filters match.
Clients should only call this request if the corresponding capability exceptionBreakpointFilters
returns one or more filters.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SetExceptionBreakpoints
impl RefUnwindSafe for SetExceptionBreakpoints
impl Send for SetExceptionBreakpoints
impl Sync for SetExceptionBreakpoints
impl Unpin for SetExceptionBreakpoints
impl UnwindSafe for SetExceptionBreakpoints
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