pub struct PutCollectionsCollectionIdFoldersFolderIdResponseData {
pub collection: Option<String>,
pub created_at: Option<String>,
pub description: Option<String>,
pub folder: Option<String>,
pub id: Option<String>,
pub last_revision: Option<f64>,
pub last_updated_by: Option<String>,
pub name: Option<String>,
pub owner: Option<String>,
pub updated_at: Option<String>,
}
Fields§
§collection: Option<String>
The collection ID that the folder belongs to.
created_at: Option<String>
The folder’s creation date and time.
description: Option<String>
The folder’s description.
folder: Option<String>
Information about the folder.
id: Option<String>
The folder’s ID.
last_revision: Option<f64>
An internal revision ID. Its value increments each time the resource changes. You can use this ID to track whether there were changes since the last time you fetched the resource.
last_updated_by: Option<String>
The user ID of the user that last updated the folder.
name: Option<String>
The folder’s name.
owner: Option<String>
The user ID of the folder’s owner.
updated_at: Option<String>
The date and time at which the folder was last updated.
Trait Implementations§
Source§impl Clone for PutCollectionsCollectionIdFoldersFolderIdResponseData
impl Clone for PutCollectionsCollectionIdFoldersFolderIdResponseData
Source§fn clone(&self) -> PutCollectionsCollectionIdFoldersFolderIdResponseData
fn clone(&self) -> PutCollectionsCollectionIdFoldersFolderIdResponseData
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 PutCollectionsCollectionIdFoldersFolderIdResponseData
impl<'de> Deserialize<'de> for PutCollectionsCollectionIdFoldersFolderIdResponseData
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 PutCollectionsCollectionIdFoldersFolderIdResponseData
impl PartialEq for PutCollectionsCollectionIdFoldersFolderIdResponseData
Source§fn eq(
&self,
other: &PutCollectionsCollectionIdFoldersFolderIdResponseData,
) -> bool
fn eq( &self, other: &PutCollectionsCollectionIdFoldersFolderIdResponseData, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutCollectionsCollectionIdFoldersFolderIdResponseData
Auto Trait Implementations§
impl Freeze for PutCollectionsCollectionIdFoldersFolderIdResponseData
impl RefUnwindSafe for PutCollectionsCollectionIdFoldersFolderIdResponseData
impl Send for PutCollectionsCollectionIdFoldersFolderIdResponseData
impl Sync for PutCollectionsCollectionIdFoldersFolderIdResponseData
impl Unpin for PutCollectionsCollectionIdFoldersFolderIdResponseData
impl UnwindSafe for PutCollectionsCollectionIdFoldersFolderIdResponseData
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