pub struct PostCollectionsBodyCollection {
pub info: PostCollectionsBodyCollectionInfo,
pub item: Option<Vec<PostCollectionsBodyCollectionItemItem>>,
}
Fields§
§info: PostCollectionsBodyCollectionInfo
An object that contains basic information about the collection. For a complete list of
values, refer to the definitions.info
entry in the collection.json schema
file.
item: Option<Vec<PostCollectionsBodyCollectionItemItem>>
Information about the collection’s HTTP requests and responses. For a complete list of
values, refer to the definitions.item
entry in the collection.json schema
file.
Trait Implementations§
Source§impl Clone for PostCollectionsBodyCollection
impl Clone for PostCollectionsBodyCollection
Source§fn clone(&self) -> PostCollectionsBodyCollection
fn clone(&self) -> PostCollectionsBodyCollection
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 PostCollectionsBodyCollection
impl<'de> Deserialize<'de> for PostCollectionsBodyCollection
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 PostCollectionsBodyCollection
impl PartialEq for PostCollectionsBodyCollection
Source§fn eq(&self, other: &PostCollectionsBodyCollection) -> bool
fn eq(&self, other: &PostCollectionsBodyCollection) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PostCollectionsBodyCollection
Auto Trait Implementations§
impl Freeze for PostCollectionsBodyCollection
impl RefUnwindSafe for PostCollectionsBodyCollection
impl Send for PostCollectionsBodyCollection
impl Sync for PostCollectionsBodyCollection
impl Unpin for PostCollectionsBodyCollection
impl UnwindSafe for PostCollectionsBodyCollection
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