pub struct SetExceptionBreakpointsResponseBody {
pub breakpoints: Option<Vec<Breakpoint>>,
/* private fields */
}
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.
Implementations§
Source§impl SetExceptionBreakpointsResponseBody
impl SetExceptionBreakpointsResponseBody
Sourcepub fn builder() -> SetExceptionBreakpointsResponseBodyBuilder<((),)>
pub fn builder() -> SetExceptionBreakpointsResponseBodyBuilder<((),)>
Create a builder for building SetExceptionBreakpointsResponseBody
.
On the builder, call .breakpoints(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of SetExceptionBreakpointsResponseBody
.
Trait Implementations§
Source§impl Clone for SetExceptionBreakpointsResponseBody
impl Clone for SetExceptionBreakpointsResponseBody
Source§fn clone(&self) -> SetExceptionBreakpointsResponseBody
fn clone(&self) -> SetExceptionBreakpointsResponseBody
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for SetExceptionBreakpointsResponseBody
impl<'de> Deserialize<'de> for SetExceptionBreakpointsResponseBody
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<SetExceptionBreakpointsResponseBody> for SuccessResponse
impl From<SetExceptionBreakpointsResponseBody> for SuccessResponse
Source§fn from(args: SetExceptionBreakpointsResponseBody) -> Self
fn from(args: SetExceptionBreakpointsResponseBody) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetExceptionBreakpointsResponseBody
impl PartialEq for SetExceptionBreakpointsResponseBody
Source§fn eq(&self, other: &SetExceptionBreakpointsResponseBody) -> bool
fn eq(&self, other: &SetExceptionBreakpointsResponseBody) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for SetExceptionBreakpointsResponseBody
impl StructuralPartialEq for SetExceptionBreakpointsResponseBody
Auto Trait Implementations§
impl Freeze for SetExceptionBreakpointsResponseBody
impl RefUnwindSafe for SetExceptionBreakpointsResponseBody
impl Send for SetExceptionBreakpointsResponseBody
impl Sync for SetExceptionBreakpointsResponseBody
impl Unpin for SetExceptionBreakpointsResponseBody
impl UnwindSafe for SetExceptionBreakpointsResponseBody
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.