pub struct TransactWriteItem {
pub condition_check: Option<ConditionCheck>,
pub delete: Option<Delete>,
pub put: Option<Put>,
pub update: Option<Update>,
}
Expand description
A list of requests that can perform update, put, delete, or check operations on multiple items in one or more tables atomically.
Fields§
§condition_check: Option<ConditionCheck>
A request to perform a check item operation.
delete: Option<Delete>
A request to perform a DeleteItem
operation.
put: Option<Put>
A request to perform a PutItem
operation.
update: Option<Update>
A request to perform an UpdateItem
operation.
Trait Implementations§
Source§impl Clone for TransactWriteItem
impl Clone for TransactWriteItem
Source§fn clone(&self) -> TransactWriteItem
fn clone(&self) -> TransactWriteItem
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 TransactWriteItem
impl Debug for TransactWriteItem
Source§impl Default for TransactWriteItem
impl Default for TransactWriteItem
Source§fn default() -> TransactWriteItem
fn default() -> TransactWriteItem
Returns the “default value” for a type. Read more
Source§impl PartialEq for TransactWriteItem
impl PartialEq for TransactWriteItem
Source§impl Serialize for TransactWriteItem
impl Serialize for TransactWriteItem
impl StructuralPartialEq for TransactWriteItem
Auto Trait Implementations§
impl Freeze for TransactWriteItem
impl RefUnwindSafe for TransactWriteItem
impl Send for TransactWriteItem
impl Sync for TransactWriteItem
impl Unpin for TransactWriteItem
impl UnwindSafe for TransactWriteItem
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