pub struct GetCollectionsCollectionIdResponsesResponseIdResponseData {
pub created_at: Option<String>,
pub id: Option<String>,
pub last_revision: Option<i64>,
pub last_updated_by: Option<String>,
pub name: Option<String>,
pub owner: Option<String>,
pub request: Option<String>,
pub updated_at: Option<String>,
}
Fields§
§created_at: Option<String>
The response’s creation date and time.
id: Option<String>
The response’s ID.
last_revision: Option<i64>
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 response.
name: Option<String>
The response’s name.
owner: Option<String>
The user ID of the response’s owner.
request: Option<String>
The ID of the request that the response belongs to.
updated_at: Option<String>
The date and time at which the response was last updated.
Trait Implementations§
Source§impl Clone for GetCollectionsCollectionIdResponsesResponseIdResponseData
impl Clone for GetCollectionsCollectionIdResponsesResponseIdResponseData
Source§fn clone(&self) -> GetCollectionsCollectionIdResponsesResponseIdResponseData
fn clone(&self) -> GetCollectionsCollectionIdResponsesResponseIdResponseData
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 GetCollectionsCollectionIdResponsesResponseIdResponseData
impl<'de> Deserialize<'de> for GetCollectionsCollectionIdResponsesResponseIdResponseData
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 GetCollectionsCollectionIdResponsesResponseIdResponseData
impl PartialEq for GetCollectionsCollectionIdResponsesResponseIdResponseData
Source§fn eq(
&self,
other: &GetCollectionsCollectionIdResponsesResponseIdResponseData,
) -> bool
fn eq( &self, other: &GetCollectionsCollectionIdResponsesResponseIdResponseData, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetCollectionsCollectionIdResponsesResponseIdResponseData
Auto Trait Implementations§
impl Freeze for GetCollectionsCollectionIdResponsesResponseIdResponseData
impl RefUnwindSafe for GetCollectionsCollectionIdResponsesResponseIdResponseData
impl Send for GetCollectionsCollectionIdResponsesResponseIdResponseData
impl Sync for GetCollectionsCollectionIdResponsesResponseIdResponseData
impl Unpin for GetCollectionsCollectionIdResponsesResponseIdResponseData
impl UnwindSafe for GetCollectionsCollectionIdResponsesResponseIdResponseData
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