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