pub struct PublishedComponentSet {
pub key: String,
pub file_key: String,
pub node_id: String,
pub thumbnail_url: Option<String>,
pub name: String,
pub description: String,
pub created_at: String,
pub updated_at: String,
pub user: Box<User>,
pub containing_frame: Option<Box<FrameInfo>>,
}
Expand description
PublishedComponentSet : A node containing a set of variants of a component.
Fields§
§key: String
The unique identifier for the component set.
file_key: String
The unique identifier of the Figma file that contains the component set.
node_id: String
The unique identifier of the component set node within the Figma file.
thumbnail_url: Option<String>
A URL to a thumbnail image of the component set.
name: String
The name of the component set.
description: String
The description of the component set as entered by the publisher.
created_at: String
The UTC ISO 8601 time when the component set was created.
updated_at: String
The UTC ISO 8601 time when the component set was last updated.
user: Box<User>
The user who last updated the component set.
containing_frame: Option<Box<FrameInfo>>
The containing frame of the component set.
Implementations§
Trait Implementations§
Source§impl Clone for PublishedComponentSet
impl Clone for PublishedComponentSet
Source§fn clone(&self) -> PublishedComponentSet
fn clone(&self) -> PublishedComponentSet
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 PublishedComponentSet
impl Debug for PublishedComponentSet
Source§impl Default for PublishedComponentSet
impl Default for PublishedComponentSet
Source§fn default() -> PublishedComponentSet
fn default() -> PublishedComponentSet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PublishedComponentSet
impl<'de> Deserialize<'de> for PublishedComponentSet
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 PublishedComponentSet
impl PartialEq for PublishedComponentSet
Source§impl Serialize for PublishedComponentSet
impl Serialize for PublishedComponentSet
impl StructuralPartialEq for PublishedComponentSet
Auto Trait Implementations§
impl Freeze for PublishedComponentSet
impl RefUnwindSafe for PublishedComponentSet
impl Send for PublishedComponentSet
impl Sync for PublishedComponentSet
impl Unpin for PublishedComponentSet
impl UnwindSafe for PublishedComponentSet
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