Struct aws_sdk_honeycode::model::UpsertRowsResult
source ·
[−]#[non_exhaustive]pub struct UpsertRowsResult {
pub row_ids: Option<Vec<String>>,
pub upsert_action: Option<UpsertAction>,
}Expand description
An object that represents the result of a single upsert row request.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.row_ids: Option<Vec<String>>The list of row ids that were changed as part of an upsert row operation. If the upsert resulted in an update, this list could potentially contain multiple rows that matched the filter and hence got updated. If the upsert resulted in an append, this list would only have the single row that was appended.
upsert_action: Option<UpsertAction>The result of the upsert action.
Implementations
The list of row ids that were changed as part of an upsert row operation. If the upsert resulted in an update, this list could potentially contain multiple rows that matched the filter and hence got updated. If the upsert resulted in an append, this list would only have the single row that was appended.
The result of the upsert action.
Creates a new builder-style object to manufacture UpsertRowsResult
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for UpsertRowsResult
impl Send for UpsertRowsResult
impl Sync for UpsertRowsResult
impl Unpin for UpsertRowsResult
impl UnwindSafe for UpsertRowsResult
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
