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