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