pub struct PackSummaryList {
pub items: Vec<PackSummary>,
pub next_page_link: Option<NextPageLink>,
pub next_page_token: Option<NextPageToken>,
}
Expand description
List of Pack summaries.
JSON schema
{
"description": "List of Pack summaries.",
"type": "object",
"required": [
"items"
],
"properties": {
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PackSummary"
}
},
"nextPageLink": {
"allOf": [
{
"$ref": "#/components/schemas/nextPageLink"
},
{
"examples": [
"https://coda.io/apis/v1/packs?pageToken=xyz"
],
"type": "string"
}
]
},
"nextPageToken": {
"$ref": "#/components/schemas/nextPageToken"
}
},
"additionalProperties": false,
"x-schema-name": "PackSummaryList"
}
Fields§
§items: Vec<PackSummary>
§next_page_link: Option<NextPageLink>
§next_page_token: Option<NextPageToken>
Trait Implementations§
Source§impl Clone for PackSummaryList
impl Clone for PackSummaryList
Source§fn clone(&self) -> PackSummaryList
fn clone(&self) -> PackSummaryList
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 PackSummaryList
impl Debug for PackSummaryList
Source§impl<'de> Deserialize<'de> for PackSummaryList
impl<'de> Deserialize<'de> for PackSummaryList
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<&PackSummaryList> for PackSummaryList
impl From<&PackSummaryList> for PackSummaryList
Source§fn from(value: &PackSummaryList) -> Self
fn from(value: &PackSummaryList) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackSummaryList
impl RefUnwindSafe for PackSummaryList
impl Send for PackSummaryList
impl Sync for PackSummaryList
impl Unpin for PackSummaryList
impl UnwindSafe for PackSummaryList
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