pub struct DataBreakpoint {
pub data_id: String,
pub access_type: Option<String>,
pub condition: Option<String>,
pub hit_condition: Option<String>,
}Expand description
A data breakpoint in the request
Fields§
§data_id: StringIdentifier obtained from dataBreakpointInfo
access_type: Option<String>Access type (e.g., “write”, “read”, “readWrite”)
condition: Option<String>Optional condition expression
hit_condition: Option<String>Optional hit condition
Trait Implementations§
Source§impl Clone for DataBreakpoint
impl Clone for DataBreakpoint
Source§fn clone(&self) -> DataBreakpoint
fn clone(&self) -> DataBreakpoint
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 Debug for DataBreakpoint
impl Debug for DataBreakpoint
Source§impl<'de> Deserialize<'de> for DataBreakpoint
impl<'de> Deserialize<'de> for DataBreakpoint
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 DataBreakpoint
impl RefUnwindSafe for DataBreakpoint
impl Send for DataBreakpoint
impl Sync for DataBreakpoint
impl Unpin for DataBreakpoint
impl UnsafeUnpin for DataBreakpoint
impl UnwindSafe for DataBreakpoint
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