pub struct ColumnList {
pub href: Option<String>,
pub items: Vec<Column>,
pub next_page_link: Option<NextPageLink>,
pub next_page_token: Option<NextPageToken>,
}Expand description
List of columns.
JSON schema
{
"description": "List of columns.",
"type": "object",
"required": [
"items"
],
"properties": {
"href": {
"description": "API link to these results",
"examples": [
"https://coda.io/apis/v1/docs/AbCDeFGH/tables/grid-pqRst-U/columns?limit=20"
],
"type": "string",
"format": "url"
},
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Column"
}
},
"nextPageLink": {
"allOf": [
{
"$ref": "#/components/schemas/nextPageLink"
},
{
"examples": [
"https://coda.io/apis/v1/docs/AbCDeFGH/tables/grid-pqRst-U/columns?pageToken=eyJsaW1pd"
],
"type": "string"
}
]
},
"nextPageToken": {
"$ref": "#/components/schemas/nextPageToken"
}
},
"additionalProperties": false,
"x-schema-name": "ColumnList"
}Fields§
§href: Option<String>API link to these results
items: Vec<Column>§next_page_link: Option<NextPageLink>§next_page_token: Option<NextPageToken>Trait Implementations§
Source§impl Clone for ColumnList
impl Clone for ColumnList
Source§fn clone(&self) -> ColumnList
fn clone(&self) -> ColumnList
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 ColumnList
impl Debug for ColumnList
Source§impl<'de> Deserialize<'de> for ColumnList
impl<'de> Deserialize<'de> for ColumnList
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<&ColumnList> for ColumnList
impl From<&ColumnList> for ColumnList
Source§fn from(value: &ColumnList) -> Self
fn from(value: &ColumnList) -> Self
Converts to this type from the input type.
Source§impl PaginatedResponse<Column> for ColumnList
impl PaginatedResponse<Column> for ColumnList
fn items(&self) -> &Vec<Column>
fn next_page_token(&self) -> Option<&NextPageToken>
fn into_items(self) -> Vec<Column>
Auto Trait Implementations§
impl Freeze for ColumnList
impl RefUnwindSafe for ColumnList
impl Send for ColumnList
impl Sync for ColumnList
impl Unpin for ColumnList
impl UnwindSafe for ColumnList
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