pub struct CellEdit {
pub column: String,
pub value: Value,
}
Expand description
An edit made to a particular cell in a row.
JSON schema
{
"description": "An edit made to a particular cell in a row.",
"type": "object",
"required": [
"column",
"value"
],
"properties": {
"column": {
"description": "Column ID, URL, or name (fragile and discouraged)
associated with this edit.",
"examples": [
"c-tuVwxYz"
],
"type": "string"
},
"value": {
"$ref": "#/components/schemas/Value"
}
},
"additionalProperties": false,
"x-schema-name": "CellEdit"
}
Fields§
§column: String
Column ID, URL, or name (fragile and discouraged) associated with this edit.
value: Value
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CellEdit
impl<'de> Deserialize<'de> for CellEdit
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 CellEdit
impl RefUnwindSafe for CellEdit
impl Send for CellEdit
impl Sync for CellEdit
impl Unpin for CellEdit
impl UnwindSafe for CellEdit
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