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