pub enum RowsUpsertResult {}
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"
}
Trait Implementations§
Source§impl Clone for RowsUpsertResult
impl Clone for RowsUpsertResult
Source§fn clone(&self) -> RowsUpsertResult
fn clone(&self) -> RowsUpsertResult
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 RowsUpsertResult
impl Debug for RowsUpsertResult
Source§impl<'de> Deserialize<'de> for RowsUpsertResult
impl<'de> Deserialize<'de> for RowsUpsertResult
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<&RowsUpsertResult> for RowsUpsertResult
impl From<&RowsUpsertResult> for RowsUpsertResult
Source§fn from(value: &RowsUpsertResult) -> Self
fn from(value: &RowsUpsertResult) -> Self
Converts to this type from the input type.
Source§impl Hash for RowsUpsertResult
impl Hash for RowsUpsertResult
Source§impl Ord for RowsUpsertResult
impl Ord for RowsUpsertResult
Source§fn cmp(&self, other: &RowsUpsertResult) -> Ordering
fn cmp(&self, other: &RowsUpsertResult) -> 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 RowsUpsertResult
impl PartialEq for RowsUpsertResult
Source§impl PartialOrd for RowsUpsertResult
impl PartialOrd for RowsUpsertResult
Source§impl Serialize for RowsUpsertResult
impl Serialize for RowsUpsertResult
impl Copy for RowsUpsertResult
impl Eq for RowsUpsertResult
impl StructuralPartialEq for RowsUpsertResult
Auto Trait Implementations§
impl Freeze for RowsUpsertResult
impl RefUnwindSafe for RowsUpsertResult
impl Send for RowsUpsertResult
impl Sync for RowsUpsertResult
impl Unpin for RowsUpsertResult
impl UnwindSafe for RowsUpsertResult
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