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