Struct aws_sdk_honeycode::model::FailedBatchItem
source · [−]#[non_exhaustive]pub struct FailedBatchItem { /* private fields */ }
Expand description
A single item in a batch that failed to perform the intended action because of an error preventing it from succeeding.
Implementations
sourceimpl FailedBatchItem
impl FailedBatchItem
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The id of the batch item that failed. This is the batch item id for the BatchCreateTableRows and BatchUpsertTableRows operations and the row id for the BatchUpdateTableRows and BatchDeleteTableRows operations.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
The error message that indicates why the batch item failed.
sourceimpl FailedBatchItem
impl FailedBatchItem
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FailedBatchItem
.
Trait Implementations
sourceimpl Clone for FailedBatchItem
impl Clone for FailedBatchItem
sourcefn clone(&self) -> FailedBatchItem
fn clone(&self) -> FailedBatchItem
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for FailedBatchItem
impl Debug for FailedBatchItem
sourceimpl PartialEq<FailedBatchItem> for FailedBatchItem
impl PartialEq<FailedBatchItem> for FailedBatchItem
sourcefn eq(&self, other: &FailedBatchItem) -> bool
fn eq(&self, other: &FailedBatchItem) -> bool
impl StructuralPartialEq for FailedBatchItem
Auto Trait Implementations
impl RefUnwindSafe for FailedBatchItem
impl Send for FailedBatchItem
impl Sync for FailedBatchItem
impl Unpin for FailedBatchItem
impl UnwindSafe for FailedBatchItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more