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