pub struct RowUpdate {
pub row: RowEdit,
}
Expand description
Payload for updating a row in a table.
JSON schema
{
"description": "Payload for updating a row in a table.",
"type": "object",
"required": [
"row"
],
"properties": {
"row": {
"$ref": "#/components/schemas/RowEdit"
}
},
"additionalProperties": false,
"x-schema-name": "RowUpdate"
}
Fields§
§row: RowEdit
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RowUpdate
impl<'de> Deserialize<'de> for RowUpdate
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 RowUpdate
impl RefUnwindSafe for RowUpdate
impl Send for RowUpdate
impl Sync for RowUpdate
impl Unpin for RowUpdate
impl UnwindSafe for RowUpdate
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