pub struct RowsDelete {
pub row_ids: Vec<String>,
}
Expand description
Payload for deleting rows from a table.
JSON schema
{
"description": "Payload for deleting rows from a table.",
"type": "object",
"required": [
"rowIds"
],
"properties": {
"rowIds": {
"description": "Row IDs to delete.\n",
"examples": [
[
"i-bCdeFgh",
"i-CdEfgHi"
]
],
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"x-schema-name": "RowsDelete"
}
Fields§
§row_ids: Vec<String>
Row IDs to delete.
Trait Implementations§
Source§impl Clone for RowsDelete
impl Clone for RowsDelete
Source§fn clone(&self) -> RowsDelete
fn clone(&self) -> RowsDelete
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RowsDelete
impl Debug for RowsDelete
Source§impl<'de> Deserialize<'de> for RowsDelete
impl<'de> Deserialize<'de> for RowsDelete
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<&RowsDelete> for RowsDelete
impl From<&RowsDelete> for RowsDelete
Source§fn from(value: &RowsDelete) -> Self
fn from(value: &RowsDelete) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RowsDelete
impl RefUnwindSafe for RowsDelete
impl Send for RowsDelete
impl Sync for RowsDelete
impl Unpin for RowsDelete
impl UnwindSafe for RowsDelete
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