pub struct RowsUpsertResultCorrect {
pub added_row_ids: Vec<String>,
pub request_id: String,
}Expand description
RowsUpsertResult
JSON schema
{
"description": "The result of a rows insert/upsert operation.",
"allOf": [
{
"$ref": "#/components/schemas/DocumentMutateResponse"
},
{
"type": "object",
"properties": {
"addedRowIds": {
"description": "Row IDs for rows that will be added. Only
applicable when keyColumns is not set or empty.",
"examples": [
[
"i-bCdeFgh",
"i-CdEfgHi"
]
],
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}
],
"x-schema-name": "RowsUpsertResult"
}Fields§
§added_row_ids: Vec<String>§request_id: StringTrait Implementations§
Source§impl Clone for RowsUpsertResultCorrect
impl Clone for RowsUpsertResultCorrect
Source§fn clone(&self) -> RowsUpsertResultCorrect
fn clone(&self) -> RowsUpsertResultCorrect
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 RowsUpsertResultCorrect
impl Debug for RowsUpsertResultCorrect
Source§impl<'de> Deserialize<'de> for RowsUpsertResultCorrect
impl<'de> Deserialize<'de> for RowsUpsertResultCorrect
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 RowsUpsertResultCorrect
impl Hash for RowsUpsertResultCorrect
Source§impl Ord for RowsUpsertResultCorrect
impl Ord for RowsUpsertResultCorrect
Source§fn cmp(&self, other: &RowsUpsertResultCorrect) -> Ordering
fn cmp(&self, other: &RowsUpsertResultCorrect) -> 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 RowsUpsertResultCorrect
impl PartialEq for RowsUpsertResultCorrect
Source§impl PartialOrd for RowsUpsertResultCorrect
impl PartialOrd for RowsUpsertResultCorrect
Source§impl Serialize for RowsUpsertResultCorrect
impl Serialize for RowsUpsertResultCorrect
impl Eq for RowsUpsertResultCorrect
impl StructuralPartialEq for RowsUpsertResultCorrect
Auto Trait Implementations§
impl Freeze for RowsUpsertResultCorrect
impl RefUnwindSafe for RowsUpsertResultCorrect
impl Send for RowsUpsertResultCorrect
impl Sync for RowsUpsertResultCorrect
impl Unpin for RowsUpsertResultCorrect
impl UnwindSafe for RowsUpsertResultCorrect
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