pub struct GetCollectionsResponseCollectionsItem {
pub created_at: Option<String>,
pub fork: Option<GetCollectionsResponseCollectionsItemFork>,
pub id: Option<String>,
pub is_public: Option<bool>,
pub name: Option<String>,
pub owner: Option<String>,
pub uid: Option<String>,
pub updated_at: Option<String>,
}
Fields§
§created_at: Option<String>
The collection’s creation date and time.
fork: Option<GetCollectionsResponseCollectionsItemFork>
If the collection is forked, the fork’s information.
id: Option<String>
The collection’s ID.
is_public: Option<bool>
If true, the collection is publicly available.
name: Option<String>
The collection’s name.
owner: Option<String>
The owner of the collection.
uid: Option<String>
The collection’s unique ID.
updated_at: Option<String>
The date and time at which the collection was last updated.
Trait Implementations§
Source§impl Clone for GetCollectionsResponseCollectionsItem
impl Clone for GetCollectionsResponseCollectionsItem
Source§fn clone(&self) -> GetCollectionsResponseCollectionsItem
fn clone(&self) -> GetCollectionsResponseCollectionsItem
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<'de> Deserialize<'de> for GetCollectionsResponseCollectionsItem
impl<'de> Deserialize<'de> for GetCollectionsResponseCollectionsItem
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 GetCollectionsResponseCollectionsItem
impl PartialEq for GetCollectionsResponseCollectionsItem
Source§fn eq(&self, other: &GetCollectionsResponseCollectionsItem) -> bool
fn eq(&self, other: &GetCollectionsResponseCollectionsItem) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetCollectionsResponseCollectionsItem
Auto Trait Implementations§
impl Freeze for GetCollectionsResponseCollectionsItem
impl RefUnwindSafe for GetCollectionsResponseCollectionsItem
impl Send for GetCollectionsResponseCollectionsItem
impl Sync for GetCollectionsResponseCollectionsItem
impl Unpin for GetCollectionsResponseCollectionsItem
impl UnwindSafe for GetCollectionsResponseCollectionsItem
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