pub struct DataBreakpointInfoResponseBody {
pub access_types: Option<Vec<DataBreakpointAccessType>>,
pub can_persist: Option<bool>,
pub data_id: Option<String>,
pub description: String,
}
Fields§
§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: Option<bool>
Optional attribute indicating that a potential data breakpoint could be persisted across sessions.
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.
Trait Implementations§
Source§impl Clone for DataBreakpointInfoResponseBody
impl Clone for DataBreakpointInfoResponseBody
Source§fn clone(&self) -> DataBreakpointInfoResponseBody
fn clone(&self) -> DataBreakpointInfoResponseBody
Returns a copy 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<'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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DataBreakpointInfoResponseBody
impl PartialEq for DataBreakpointInfoResponseBody
Source§fn eq(&self, other: &DataBreakpointInfoResponseBody) -> bool
fn eq(&self, other: &DataBreakpointInfoResponseBody) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.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
Mutably borrows from an owned value. Read more