pub struct SetExceptionBreakpointsResponse {
pub breakpoints: Option<Vec<Breakpoint>>,
}
Expand description
Response to setExceptionBreakpoints
request.
The response contains an array of Breakpoint
objects with information about each exception breakpoint or filter. The Breakpoint
objects are in the same order as the elements of the filters
, filterOptions
, exceptionOptions
arrays given as arguments. If both filters
and filterOptions
are given, the returned array must start with filters
information first, followed by filterOptions
information.
The verified
property of a Breakpoint
object signals whether the exception breakpoint or filter could be successfully created and whether the condition is valid. In case of an error the message
property explains the problem. The id
property can be used to introduce a unique ID for the exception breakpoint or filter so that it can be updated subsequently by sending breakpoint events.
For backward compatibility both the breakpoints
array and the enclosing body
are optional. If these elements are missing a client is not able to show problems for individual exception breakpoints or filters.
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
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more