pub struct DataBreakpointInfoArguments {
pub name: String,
pub variables_reference: Option<i64>,
}
Expand description
Arguments for ‘dataBreakpointInfo’ request.
Fields§
§name: String
The name of the Variable’s child to obtain data breakpoint information for. If variableReference isn’t provided, this can be an expression.
variables_reference: Option<i64>
Reference to the Variable container if the data breakpoint is requested for a child of the container.
Trait Implementations§
Source§impl Clone for DataBreakpointInfoArguments
impl Clone for DataBreakpointInfoArguments
Source§fn clone(&self) -> DataBreakpointInfoArguments
fn clone(&self) -> DataBreakpointInfoArguments
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 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
impl StructuralPartialEq for DataBreakpointInfoArguments
Auto Trait Implementations§
impl Freeze for DataBreakpointInfoArguments
impl RefUnwindSafe for DataBreakpointInfoArguments
impl Send for DataBreakpointInfoArguments
impl Sync for DataBreakpointInfoArguments
impl Unpin 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