pub struct VariableList {
pub total_count: Option<f64>,
pub variables: Option<Vec<Variable>>,
}Fields§
§total_count: Option<f64>§variables: Option<Vec<Variable>>Trait Implementations§
Source§impl Clone for VariableList
impl Clone for VariableList
Source§fn clone(&self) -> VariableList
fn clone(&self) -> VariableList
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 VariableList
impl Debug for VariableList
Source§impl<'de> Deserialize<'de> for VariableList
impl<'de> Deserialize<'de> for VariableList
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 VariableList
impl RefUnwindSafe for VariableList
impl Send for VariableList
impl Sync for VariableList
impl Unpin for VariableList
impl UnsafeUnpin for VariableList
impl UnwindSafe for VariableList
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