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