pub struct GetApisApiIdCollectionsCollectionIdResponseItemItem {
pub event: Option<Vec<Option<Value>>>,
pub id: Option<String>,
pub name: Option<String>,
pub request: Option<Value>,
pub response: Option<Vec<Option<Value>>>,
}
Fields§
§event: Option<Vec<Option<Value>>>
The collection’s event information. For a complete list of values, refer to the
definitions.event
entry in the collection.json schema
file.
id: Option<String>
The collection item’s ID.
name: Option<String>
The collection item’s human-readable identifier.
request: Option<Value>
§response: Option<Vec<Option<Value>>>
The collection’s response information. For a complete list of values, refer to the
definitions.response
entry in the collection.json schema
file.
Trait Implementations§
Source§impl Clone for GetApisApiIdCollectionsCollectionIdResponseItemItem
impl Clone for GetApisApiIdCollectionsCollectionIdResponseItemItem
Source§fn clone(&self) -> GetApisApiIdCollectionsCollectionIdResponseItemItem
fn clone(&self) -> GetApisApiIdCollectionsCollectionIdResponseItemItem
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 GetApisApiIdCollectionsCollectionIdResponseItemItem
impl<'de> Deserialize<'de> for GetApisApiIdCollectionsCollectionIdResponseItemItem
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 GetApisApiIdCollectionsCollectionIdResponseItemItem
impl PartialEq for GetApisApiIdCollectionsCollectionIdResponseItemItem
Source§fn eq(
&self,
other: &GetApisApiIdCollectionsCollectionIdResponseItemItem,
) -> bool
fn eq( &self, other: &GetApisApiIdCollectionsCollectionIdResponseItemItem, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetApisApiIdCollectionsCollectionIdResponseItemItem
Auto Trait Implementations§
impl Freeze for GetApisApiIdCollectionsCollectionIdResponseItemItem
impl RefUnwindSafe for GetApisApiIdCollectionsCollectionIdResponseItemItem
impl Send for GetApisApiIdCollectionsCollectionIdResponseItemItem
impl Sync for GetApisApiIdCollectionsCollectionIdResponseItemItem
impl Unpin for GetApisApiIdCollectionsCollectionIdResponseItemItem
impl UnwindSafe for GetApisApiIdCollectionsCollectionIdResponseItemItem
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