pub struct PublishedVariableCollection {
pub id: String,
pub subscribed_id: String,
pub name: String,
pub key: String,
pub updated_at: String,
}
Expand description
PublishedVariableCollection : A grouping of related Variable objects each with the same modes.
Fields§
§id: String
The unique identifier of this variable collection.
subscribed_id: String
The ID of the variable collection that is used by subscribing files. This ID changes every time the variable collection is modified and published.
name: String
The name of this variable collection.
key: String
The key of this variable collection.
updated_at: String
The UTC ISO 8601 time at which the variable collection was last updated. This timestamp will change any time a variable in the collection is changed.
Implementations§
Trait Implementations§
Source§impl Clone for PublishedVariableCollection
impl Clone for PublishedVariableCollection
Source§fn clone(&self) -> PublishedVariableCollection
fn clone(&self) -> PublishedVariableCollection
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 PublishedVariableCollection
impl Debug for PublishedVariableCollection
Source§impl Default for PublishedVariableCollection
impl Default for PublishedVariableCollection
Source§fn default() -> PublishedVariableCollection
fn default() -> PublishedVariableCollection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PublishedVariableCollection
impl<'de> Deserialize<'de> for PublishedVariableCollection
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 PublishedVariableCollection
Auto Trait Implementations§
impl Freeze for PublishedVariableCollection
impl RefUnwindSafe for PublishedVariableCollection
impl Send for PublishedVariableCollection
impl Sync for PublishedVariableCollection
impl Unpin for PublishedVariableCollection
impl UnwindSafe for PublishedVariableCollection
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