pub struct TransactGetItemsInput {
pub return_consumed_capacity: Option<String>,
pub transact_items: Vec<TransactGetItem>,
}
Fields§
§return_consumed_capacity: Option<String>
A value of TOTAL
causes consumed capacity information to be returned, and a value of NONE
prevents that information from being returned. No other value is valid.
transact_items: Vec<TransactGetItem>
An ordered array of up to 25 TransactGetItem
objects, each of which contains a Get
structure.
Trait Implementations§
Source§impl Clone for TransactGetItemsInput
impl Clone for TransactGetItemsInput
Source§fn clone(&self) -> TransactGetItemsInput
fn clone(&self) -> TransactGetItemsInput
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 TransactGetItemsInput
impl Debug for TransactGetItemsInput
Source§impl Default for TransactGetItemsInput
impl Default for TransactGetItemsInput
Source§fn default() -> TransactGetItemsInput
fn default() -> TransactGetItemsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for TransactGetItemsInput
impl PartialEq for TransactGetItemsInput
Source§impl Serialize for TransactGetItemsInput
impl Serialize for TransactGetItemsInput
impl StructuralPartialEq for TransactGetItemsInput
Auto Trait Implementations§
impl Freeze for TransactGetItemsInput
impl RefUnwindSafe for TransactGetItemsInput
impl Send for TransactGetItemsInput
impl Sync for TransactGetItemsInput
impl Unpin for TransactGetItemsInput
impl UnwindSafe for TransactGetItemsInput
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