pub struct DataBreakpointInfoResponseBody {
pub data_id: Option<String>,
pub description: String,
pub access_types: Option<Vec<String>>,
}Expand description
Response body for dataBreakpointInfo request
Fields§
§data_id: Option<String>Identifier for the data (null/None means not available)
description: StringDescription of the data
access_types: Option<Vec<String>>Available access types for this data
Trait Implementations§
Source§impl Clone for DataBreakpointInfoResponseBody
impl Clone for DataBreakpointInfoResponseBody
Source§fn clone(&self) -> DataBreakpointInfoResponseBody
fn clone(&self) -> DataBreakpointInfoResponseBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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
Auto Trait Implementations§
impl Freeze for DataBreakpointInfoResponseBody
impl RefUnwindSafe for DataBreakpointInfoResponseBody
impl Send for DataBreakpointInfoResponseBody
impl Sync for DataBreakpointInfoResponseBody
impl Unpin for DataBreakpointInfoResponseBody
impl UnsafeUnpin 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