pub struct VariablesArguments {
pub variables_reference: i64,
pub filter: Option<String>,
pub start: Option<i64>,
pub count: Option<i64>,
}Expand description
Arguments for variables request
Fields§
§variables_reference: i64Reference to the variable container
filter: Option<String>Optional filter (“indexed” or “named”)
start: Option<i64>Start index of variables to return
count: Option<i64>Number of variables to return
Trait Implementations§
Source§impl Clone for VariablesArguments
impl Clone for VariablesArguments
Source§fn clone(&self) -> VariablesArguments
fn clone(&self) -> VariablesArguments
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 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
Auto Trait Implementations§
impl Freeze for VariablesArguments
impl RefUnwindSafe for VariablesArguments
impl Send for VariablesArguments
impl Sync for VariablesArguments
impl Unpin for VariablesArguments
impl UnsafeUnpin 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