pub struct PackInvitationList {
pub items: Vec<PackInvitation>,
pub next_page_link: Option<String>,
pub next_page_token: Option<String>,
}Expand description
List of Pack invitations.
JSON schema
{
"description": "List of Pack invitations.",
"type": "object",
"required": [
"items"
],
"properties": {
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PackInvitation"
}
},
"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": "PackInvitationList"
}Fields§
§items: Vec<PackInvitation>§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 PackInvitationList
impl Clone for PackInvitationList
Source§fn clone(&self) -> PackInvitationList
fn clone(&self) -> PackInvitationList
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 PackInvitationList
impl Debug for PackInvitationList
Source§impl<'de> Deserialize<'de> for PackInvitationList
impl<'de> Deserialize<'de> for PackInvitationList
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<&PackInvitationList> for PackInvitationList
impl From<&PackInvitationList> for PackInvitationList
Source§fn from(value: &PackInvitationList) -> Self
fn from(value: &PackInvitationList) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackInvitationList
impl RefUnwindSafe for PackInvitationList
impl Send for PackInvitationList
impl Sync for PackInvitationList
impl Unpin for PackInvitationList
impl UnwindSafe for PackInvitationList
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