pub struct PackInvitationWithPackList {
pub items: Vec<PackInvitationWithPack>,
pub next_page_link: Option<String>,
pub next_page_token: Option<String>,
}Expand description
List of Pack invitations with Pack metadata.
JSON schema
{
"description": "List of Pack invitations with Pack metadata.",
"type": "object",
"required": [
"items"
],
"properties": {
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PackInvitationWithPack"
}
},
"nextPageLink": {
"description": "URL for fetching the next page of results",
"type": [
"string",
"null"
],
"format": "url"
},
"nextPageToken": {
"description": "Token for fetching the next page of results",
"type": [
"string",
"null"
]
}
},
"additionalProperties": false,
"x-schema-name": "PackInvitationWithPackList"
}Fields§
§items: Vec<PackInvitationWithPack>§next_page_link: Option<String>URL for fetching the next page of results
next_page_token: Option<String>Token for fetching the next page of results
Trait Implementations§
Source§impl Clone for PackInvitationWithPackList
impl Clone for PackInvitationWithPackList
Source§fn clone(&self) -> PackInvitationWithPackList
fn clone(&self) -> PackInvitationWithPackList
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 Debug for PackInvitationWithPackList
impl Debug for PackInvitationWithPackList
Source§impl<'de> Deserialize<'de> for PackInvitationWithPackList
impl<'de> Deserialize<'de> for PackInvitationWithPackList
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 From<&PackInvitationWithPackList> for PackInvitationWithPackList
impl From<&PackInvitationWithPackList> for PackInvitationWithPackList
Source§fn from(value: &PackInvitationWithPackList) -> Self
fn from(value: &PackInvitationWithPackList) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackInvitationWithPackList
impl RefUnwindSafe for PackInvitationWithPackList
impl Send for PackInvitationWithPackList
impl Sync for PackInvitationWithPackList
impl Unpin for PackInvitationWithPackList
impl UnwindSafe for PackInvitationWithPackList
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