pub struct TransactGetItemsOutput {
pub consumed_capacity: Vec<ConsumedCapacity>,
pub responses: Option<Vec<ItemResponse>>,
}Expand description
Output for the TransactGetItems operation.
Fields§
§consumed_capacity: Vec<ConsumedCapacity>The capacity units consumed by the operation for each table.
responses: Option<Vec<ItemResponse>>The items retrieved, in the same order as the input.
Trait Implementations§
Source§impl Clone for TransactGetItemsOutput
impl Clone for TransactGetItemsOutput
Source§fn clone(&self) -> TransactGetItemsOutput
fn clone(&self) -> TransactGetItemsOutput
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 TransactGetItemsOutput
impl Debug for TransactGetItemsOutput
Source§impl Default for TransactGetItemsOutput
impl Default for TransactGetItemsOutput
Source§fn default() -> TransactGetItemsOutput
fn default() -> TransactGetItemsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactGetItemsOutput
impl<'de> Deserialize<'de> for TransactGetItemsOutput
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
Auto Trait Implementations§
impl Freeze for TransactGetItemsOutput
impl RefUnwindSafe for TransactGetItemsOutput
impl Send for TransactGetItemsOutput
impl Sync for TransactGetItemsOutput
impl Unpin for TransactGetItemsOutput
impl UnsafeUnpin for TransactGetItemsOutput
impl UnwindSafe for TransactGetItemsOutput
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