pub struct VariablesArguments {
pub count: Option<i64>,
pub filter: Option<String>,
pub format: Option<ValueFormat>,
pub start: Option<i64>,
pub variables_reference: i64,
}
Expand description
Arguments for ‘variables’ request.
Fields§
§count: Option<i64>
The number of variables to return. If count is missing or 0, all variables are returned.
filter: Option<String>
Optional filter to limit the child variables to either named or indexed. If ommited, both types are fetched.
format: Option<ValueFormat>
Specifies details on how to format the Variable values.
start: Option<i64>
The index of the first variable to return; if omitted children start at 0.
variables_reference: i64
The Variable reference.
Trait Implementations§
Source§impl Clone for VariablesArguments
impl Clone for VariablesArguments
Source§fn clone(&self) -> VariablesArguments
fn clone(&self) -> VariablesArguments
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 VariablesArguments
impl Debug for VariablesArguments
Source§impl<'de> Deserialize<'de> for VariablesArguments
impl<'de> Deserialize<'de> for VariablesArguments
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 VariablesArguments
impl PartialEq for VariablesArguments
Source§impl Serialize for VariablesArguments
impl Serialize for VariablesArguments
impl StructuralPartialEq for VariablesArguments
Auto Trait Implementations§
impl Freeze for VariablesArguments
impl RefUnwindSafe for VariablesArguments
impl Send for VariablesArguments
impl Sync for VariablesArguments
impl Unpin for VariablesArguments
impl UnwindSafe for VariablesArguments
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