pub struct DataBreakpointInfoArguments {
pub name: String,
pub variables_reference: Option<i64>,
pub frame_id: Option<i64>,
}Expand description
Arguments for dataBreakpointInfo request
Fields§
§name: StringVariable name to get data breakpoint info for
variables_reference: Option<i64>Reference to the variable container
frame_id: Option<i64>Frame ID for context
Trait Implementations§
Source§impl Clone for DataBreakpointInfoArguments
impl Clone for DataBreakpointInfoArguments
Source§fn clone(&self) -> DataBreakpointInfoArguments
fn clone(&self) -> DataBreakpointInfoArguments
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 DataBreakpointInfoArguments
impl Debug for DataBreakpointInfoArguments
Source§impl<'de> Deserialize<'de> for DataBreakpointInfoArguments
impl<'de> Deserialize<'de> for DataBreakpointInfoArguments
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 DataBreakpointInfoArguments
impl RefUnwindSafe for DataBreakpointInfoArguments
impl Send for DataBreakpointInfoArguments
impl Sync for DataBreakpointInfoArguments
impl Unpin for DataBreakpointInfoArguments
impl UnsafeUnpin for DataBreakpointInfoArguments
impl UnwindSafe for DataBreakpointInfoArguments
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