pub struct RowEdit {
pub cells: Vec<CellEdit>,
}
Expand description
An edit made to a particular row.
JSON schema
{
"description": "An edit made to a particular row.",
"type": "object",
"required": [
"cells"
],
"properties": {
"cells": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CellEdit"
}
}
},
"additionalProperties": false,
"x-schema-name": "RowEdit"
}
Fields§
§cells: Vec<CellEdit>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RowEdit
impl<'de> Deserialize<'de> for RowEdit
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 RowEdit
impl RefUnwindSafe for RowEdit
impl Send for RowEdit
impl Sync for RowEdit
impl Unpin for RowEdit
impl UnwindSafe for RowEdit
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