pub struct RowUpdateResultCorrect {
pub id: RowId,
pub request_id: String,
}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"
}Fields§
§id: RowId§request_id: StringTrait Implementations§
Source§impl Clone for RowUpdateResultCorrect
impl Clone for RowUpdateResultCorrect
Source§fn clone(&self) -> RowUpdateResultCorrect
fn clone(&self) -> RowUpdateResultCorrect
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 RowUpdateResultCorrect
impl Debug for RowUpdateResultCorrect
Source§impl<'de> Deserialize<'de> for RowUpdateResultCorrect
impl<'de> Deserialize<'de> for RowUpdateResultCorrect
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 Hash for RowUpdateResultCorrect
impl Hash for RowUpdateResultCorrect
Source§impl Ord for RowUpdateResultCorrect
impl Ord for RowUpdateResultCorrect
Source§fn cmp(&self, other: &RowUpdateResultCorrect) -> Ordering
fn cmp(&self, other: &RowUpdateResultCorrect) -> 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 RowUpdateResultCorrect
impl PartialEq for RowUpdateResultCorrect
Source§impl PartialOrd for RowUpdateResultCorrect
impl PartialOrd for RowUpdateResultCorrect
Source§impl Serialize for RowUpdateResultCorrect
impl Serialize for RowUpdateResultCorrect
impl Eq for RowUpdateResultCorrect
impl StructuralPartialEq for RowUpdateResultCorrect
Auto Trait Implementations§
impl Freeze for RowUpdateResultCorrect
impl RefUnwindSafe for RowUpdateResultCorrect
impl Send for RowUpdateResultCorrect
impl Sync for RowUpdateResultCorrect
impl Unpin for RowUpdateResultCorrect
impl UnwindSafe for RowUpdateResultCorrect
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