#[non_exhaustive]pub struct ExecuteTransactionOutput { /* private fields */ }
Implementations§
source§impl ExecuteTransactionOutput
impl ExecuteTransactionOutput
sourcepub fn responses(&self) -> Option<&[ItemResponse]>
pub fn responses(&self) -> Option<&[ItemResponse]>
The response to a PartiQL transaction.
sourcepub fn consumed_capacity(&self) -> Option<&[ConsumedCapacity]>
pub fn consumed_capacity(&self) -> Option<&[ConsumedCapacity]>
The capacity units consumed by the entire operation. The values of the list are ordered according to the ordering of the statements.
source§impl ExecuteTransactionOutput
impl ExecuteTransactionOutput
sourcepub fn builder() -> ExecuteTransactionOutputBuilder
pub fn builder() -> ExecuteTransactionOutputBuilder
Creates a new builder-style object to manufacture ExecuteTransactionOutput
.
Trait Implementations§
source§impl Clone for ExecuteTransactionOutput
impl Clone for ExecuteTransactionOutput
source§fn clone(&self) -> ExecuteTransactionOutput
fn clone(&self) -> ExecuteTransactionOutput
Returns a copy 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 ExecuteTransactionOutput
impl Debug for ExecuteTransactionOutput
source§impl PartialEq<ExecuteTransactionOutput> for ExecuteTransactionOutput
impl PartialEq<ExecuteTransactionOutput> for ExecuteTransactionOutput
source§fn eq(&self, other: &ExecuteTransactionOutput) -> bool
fn eq(&self, other: &ExecuteTransactionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ExecuteTransactionOutput
impl RequestId for ExecuteTransactionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.