pub struct GetPublishedVariablesMeta {
pub variables: HashMap<String, PublishedVariable>,
pub variable_collections: HashMap<String, PublishedVariableCollection>,
}Fields§
§variables: HashMap<String, PublishedVariable>A map of variable ids to variables
variable_collections: HashMap<String, PublishedVariableCollection>A map of variable collection ids to variable collections
Implementations§
Source§impl GetPublishedVariablesMeta
impl GetPublishedVariablesMeta
pub fn new( variables: HashMap<String, PublishedVariable>, variable_collections: HashMap<String, PublishedVariableCollection>, ) -> GetPublishedVariablesMeta
Trait Implementations§
Source§impl Clone for GetPublishedVariablesMeta
impl Clone for GetPublishedVariablesMeta
Source§fn clone(&self) -> GetPublishedVariablesMeta
fn clone(&self) -> GetPublishedVariablesMeta
Returns a duplicate 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 GetPublishedVariablesMeta
impl Debug for GetPublishedVariablesMeta
Source§impl Default for GetPublishedVariablesMeta
impl Default for GetPublishedVariablesMeta
Source§fn default() -> GetPublishedVariablesMeta
fn default() -> GetPublishedVariablesMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetPublishedVariablesMeta
impl<'de> Deserialize<'de> for GetPublishedVariablesMeta
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 GetPublishedVariablesMeta
Auto Trait Implementations§
impl Freeze for GetPublishedVariablesMeta
impl RefUnwindSafe for GetPublishedVariablesMeta
impl Send for GetPublishedVariablesMeta
impl Sync for GetPublishedVariablesMeta
impl Unpin for GetPublishedVariablesMeta
impl UnwindSafe for GetPublishedVariablesMeta
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