pub enum RowDeleteResult {}
Expand description
RowDeleteResult
JSON schema
{
"description": "The result of a row deletion.",
"allOf": [
{
"$ref": "#/components/schemas/DocumentMutateResponse"
},
{
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"description": "ID of the row to be deleted.",
"examples": [
"i-tuVwxYz"
],
"type": "string"
}
},
"additionalProperties": false
}
],
"x-schema-name": "RowDeleteResult"
}
Trait Implementations§
Source§impl Clone for RowDeleteResult
impl Clone for RowDeleteResult
Source§fn clone(&self) -> RowDeleteResult
fn clone(&self) -> RowDeleteResult
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 RowDeleteResult
impl Debug for RowDeleteResult
Source§impl<'de> Deserialize<'de> for RowDeleteResult
impl<'de> Deserialize<'de> for RowDeleteResult
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<&RowDeleteResult> for RowDeleteResult
impl From<&RowDeleteResult> for RowDeleteResult
Source§fn from(value: &RowDeleteResult) -> Self
fn from(value: &RowDeleteResult) -> Self
Converts to this type from the input type.
Source§impl Hash for RowDeleteResult
impl Hash for RowDeleteResult
Source§impl Ord for RowDeleteResult
impl Ord for RowDeleteResult
Source§fn cmp(&self, other: &RowDeleteResult) -> Ordering
fn cmp(&self, other: &RowDeleteResult) -> 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 RowDeleteResult
impl PartialEq for RowDeleteResult
Source§impl PartialOrd for RowDeleteResult
impl PartialOrd for RowDeleteResult
Source§impl Serialize for RowDeleteResult
impl Serialize for RowDeleteResult
impl Copy for RowDeleteResult
impl Eq for RowDeleteResult
impl StructuralPartialEq for RowDeleteResult
Auto Trait Implementations§
impl Freeze for RowDeleteResult
impl RefUnwindSafe for RowDeleteResult
impl Send for RowDeleteResult
impl Sync for RowDeleteResult
impl Unpin for RowDeleteResult
impl UnwindSafe for RowDeleteResult
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