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