pub enum RowValue {}
Expand description
RowValue
JSON schema
{
"description": "A value representing a Coda row.",
"allOf": [
{
"$ref": "#/components/schemas/LinkedDataObject"
},
{
"type": "object",
"required": [
"@type",
"additionalType",
"name",
"rowId",
"tableId",
"tableUrl",
"url"
],
"properties": {
"@type": {
"type": "string",
"enum": [
"StructuredValue"
],
"x-tsType": "LinkedDataType.StructuredValue"
},
"additionalType": {
"description": "The type of this resource.",
"type": "string",
"enum": [
"row"
],
"x-tsType": "Type.Row"
},
"name": {
"description": "The display name of the row, based on its
identifying column.",
"examples": [
"Apple"
],
"type": "string"
},
"rowId": {
"description": "The ID of the table",
"examples": [
"i-tuVwxYz"
],
"type": "string"
},
"tableId": {
"description": "The ID of the table",
"examples": [
"grid-pqRst-U"
],
"type": "string"
},
"tableUrl": {
"description": "The url of the table.",
"examples": [
"https://coda.io/d/_dAbCDeFGH#Teams-and-Tasks_tpqRst-U"
],
"type": "string"
},
"url": {
"description": "The url of the row.",
"examples": [
"https://coda.io/d/_dAbCDeFGH#Teams-and-Tasks_tpqRst-U/_rui-tuVwxYz"
],
"type": "string"
}
},
"additionalProperties": false
}
],
"x-schema-name": "RowValue"
}
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RowValue
impl<'de> Deserialize<'de> for RowValue
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<RowValue> for RichSingleValue
impl From<RowValue> for RichSingleValue
Source§impl Ord for RowValue
impl Ord for RowValue
Source§impl PartialOrd for RowValue
impl PartialOrd for RowValue
impl Copy for RowValue
impl Eq for RowValue
impl StructuralPartialEq for RowValue
Auto Trait Implementations§
impl Freeze for RowValue
impl RefUnwindSafe for RowValue
impl Send for RowValue
impl Sync for RowValue
impl Unpin for RowValue
impl UnwindSafe for RowValue
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