pub struct GetCollectionsCollectionIdResponseCollectionInfo {
pub postman_id: Option<String>,
pub description: Option<String>,
pub name: Option<String>,
pub schema: Option<String>,
pub uid: Option<String>,
pub updated_at: Option<String>,
}
Fields§
§postman_id: Option<String>
The collection’s Postman ID.
description: Option<String>
The collection’s description.
name: Option<String>
The collection’s name.
schema: Option<String>
A URL to the collection’s schema.
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 GetCollectionsCollectionIdResponseCollectionInfo
impl Clone for GetCollectionsCollectionIdResponseCollectionInfo
Source§fn clone(&self) -> GetCollectionsCollectionIdResponseCollectionInfo
fn clone(&self) -> GetCollectionsCollectionIdResponseCollectionInfo
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 GetCollectionsCollectionIdResponseCollectionInfo
impl<'de> Deserialize<'de> for GetCollectionsCollectionIdResponseCollectionInfo
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 GetCollectionsCollectionIdResponseCollectionInfo
impl PartialEq for GetCollectionsCollectionIdResponseCollectionInfo
Source§fn eq(&self, other: &GetCollectionsCollectionIdResponseCollectionInfo) -> bool
fn eq(&self, other: &GetCollectionsCollectionIdResponseCollectionInfo) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetCollectionsCollectionIdResponseCollectionInfo
Auto Trait Implementations§
impl Freeze for GetCollectionsCollectionIdResponseCollectionInfo
impl RefUnwindSafe for GetCollectionsCollectionIdResponseCollectionInfo
impl Send for GetCollectionsCollectionIdResponseCollectionInfo
impl Sync for GetCollectionsCollectionIdResponseCollectionInfo
impl Unpin for GetCollectionsCollectionIdResponseCollectionInfo
impl UnwindSafe for GetCollectionsCollectionIdResponseCollectionInfo
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