#[non_exhaustive]pub struct BatchDeleteTableRowsOutput { /* private fields */ }
Implementations
sourceimpl BatchDeleteTableRowsOutput
impl BatchDeleteTableRowsOutput
sourcepub fn workbook_cursor(&self) -> i64
pub fn workbook_cursor(&self) -> i64
The updated workbook cursor after deleting the rows from the table.
sourcepub fn failed_batch_items(&self) -> Option<&[FailedBatchItem]>
pub fn failed_batch_items(&self) -> Option<&[FailedBatchItem]>
The list of row ids in the request that could not be deleted from the table. Each element in this list contains one row id from the request that could not be deleted along with the reason why that item could not be deleted.
sourceimpl BatchDeleteTableRowsOutput
impl BatchDeleteTableRowsOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BatchDeleteTableRowsOutput
.
Trait Implementations
sourceimpl Clone for BatchDeleteTableRowsOutput
impl Clone for BatchDeleteTableRowsOutput
sourcefn clone(&self) -> BatchDeleteTableRowsOutput
fn clone(&self) -> BatchDeleteTableRowsOutput
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 BatchDeleteTableRowsOutput
impl Debug for BatchDeleteTableRowsOutput
sourceimpl PartialEq<BatchDeleteTableRowsOutput> for BatchDeleteTableRowsOutput
impl PartialEq<BatchDeleteTableRowsOutput> for BatchDeleteTableRowsOutput
sourcefn eq(&self, other: &BatchDeleteTableRowsOutput) -> bool
fn eq(&self, other: &BatchDeleteTableRowsOutput) -> bool
impl StructuralPartialEq for BatchDeleteTableRowsOutput
Auto Trait Implementations
impl RefUnwindSafe for BatchDeleteTableRowsOutput
impl Send for BatchDeleteTableRowsOutput
impl Sync for BatchDeleteTableRowsOutput
impl Unpin for BatchDeleteTableRowsOutput
impl UnwindSafe for BatchDeleteTableRowsOutput
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