pub enum RowsDeleteResult {}
Expand description
RowsDeleteResult
JSON schema
{
"description": "The result of a rows delete operation.",
"allOf": [
{
"$ref": "#/components/schemas/DocumentMutateResponse"
},
{
"type": "object",
"required": [
"rowIds"
],
"properties": {
"rowIds": {
"description": "Row IDs to delete.",
"examples": [
[
"i-bCdeFgh",
"i-CdEfgHi"
]
],
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}
],
"x-schema-name": "RowsDeleteResult"
}
Trait Implementations§
Source§impl Clone for RowsDeleteResult
impl Clone for RowsDeleteResult
Source§fn clone(&self) -> RowsDeleteResult
fn clone(&self) -> RowsDeleteResult
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 RowsDeleteResult
impl Debug for RowsDeleteResult
Source§impl<'de> Deserialize<'de> for RowsDeleteResult
impl<'de> Deserialize<'de> for RowsDeleteResult
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<&RowsDeleteResult> for RowsDeleteResult
impl From<&RowsDeleteResult> for RowsDeleteResult
Source§fn from(value: &RowsDeleteResult) -> Self
fn from(value: &RowsDeleteResult) -> Self
Converts to this type from the input type.
Source§impl Hash for RowsDeleteResult
impl Hash for RowsDeleteResult
Source§impl Ord for RowsDeleteResult
impl Ord for RowsDeleteResult
Source§fn cmp(&self, other: &RowsDeleteResult) -> Ordering
fn cmp(&self, other: &RowsDeleteResult) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RowsDeleteResult
impl PartialEq for RowsDeleteResult
Source§impl PartialOrd for RowsDeleteResult
impl PartialOrd for RowsDeleteResult
Source§impl Serialize for RowsDeleteResult
impl Serialize for RowsDeleteResult
impl Copy for RowsDeleteResult
impl Eq for RowsDeleteResult
impl StructuralPartialEq for RowsDeleteResult
Auto Trait Implementations§
impl Freeze for RowsDeleteResult
impl RefUnwindSafe for RowsDeleteResult
impl Send for RowsDeleteResult
impl Sync for RowsDeleteResult
impl Unpin for RowsDeleteResult
impl UnwindSafe for RowsDeleteResult
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