pub struct DataBreakpointInfoResponseBody {
pub data_id: Option<String>,
pub description: String,
pub access_types: Option<Vec<DataBreakpointAccessType>>,
pub can_persist: bool,
/* private fields */
}
Fields§
§data_id: Option<String>
An identifier for the data on which a data breakpoint can be registered with the setDataBreakpoints request or null if no data breakpoint is available.
description: String
UI string that describes on what data the breakpoint is set on or why a data breakpoint is not available.
access_types: Option<Vec<DataBreakpointAccessType>>
Optional attribute listing the available access types for a potential data breakpoint. A UI frontend could surface this information.
can_persist: bool
Optional attribute indicating that a potential data breakpoint could be persisted across sessions.
Implementations§
Source§impl DataBreakpointInfoResponseBody
impl DataBreakpointInfoResponseBody
Sourcepub fn builder() -> DataBreakpointInfoResponseBodyBuilder<((), (), (), ())>
pub fn builder() -> DataBreakpointInfoResponseBodyBuilder<((), (), (), ())>
Create a builder for building DataBreakpointInfoResponseBody
.
On the builder, call .data_id(...)
(optional), .description(...)
, .access_types(...)
(optional), .can_persist(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of DataBreakpointInfoResponseBody
.
Trait Implementations§
Source§impl Clone for DataBreakpointInfoResponseBody
impl Clone for DataBreakpointInfoResponseBody
Source§fn clone(&self) -> DataBreakpointInfoResponseBody
fn clone(&self) -> DataBreakpointInfoResponseBody
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<'de> Deserialize<'de> for DataBreakpointInfoResponseBody
impl<'de> Deserialize<'de> for DataBreakpointInfoResponseBody
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>,
Source§impl From<DataBreakpointInfoResponseBody> for SuccessResponse
impl From<DataBreakpointInfoResponseBody> for SuccessResponse
Source§fn from(args: DataBreakpointInfoResponseBody) -> Self
fn from(args: DataBreakpointInfoResponseBody) -> Self
Source§impl PartialEq for DataBreakpointInfoResponseBody
impl PartialEq for DataBreakpointInfoResponseBody
Source§fn eq(&self, other: &DataBreakpointInfoResponseBody) -> bool
fn eq(&self, other: &DataBreakpointInfoResponseBody) -> bool
self
and other
values to be equal, and is used by ==
.impl Eq for DataBreakpointInfoResponseBody
impl StructuralPartialEq for DataBreakpointInfoResponseBody
Auto Trait Implementations§
impl Freeze for DataBreakpointInfoResponseBody
impl RefUnwindSafe for DataBreakpointInfoResponseBody
impl Send for DataBreakpointInfoResponseBody
impl Sync for DataBreakpointInfoResponseBody
impl Unpin for DataBreakpointInfoResponseBody
impl UnwindSafe for DataBreakpointInfoResponseBody
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
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
key
and return true
if they are equal.