pub enum TransactWriteItem {
PutItem(PutTransact),
UpdateItem(UpdateTransact),
DeleteItem(DeleteTransact),
ConditionCheck(ConditionCheckTransact),
}Expand description
A transactional write operation
Variants§
PutItem(PutTransact)
A transactional put
UpdateItem(UpdateTransact)
A transactional update
DeleteItem(DeleteTransact)
A transactional delete
ConditionCheck(ConditionCheckTransact)
A transactional condition check without modification
Trait Implementations§
Source§impl Clone for TransactWriteItem
impl Clone for TransactWriteItem
Source§fn clone(&self) -> TransactWriteItem
fn clone(&self) -> TransactWriteItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 From<ConditionCheck> for TransactWriteItem
impl From<ConditionCheck> for TransactWriteItem
Source§fn from(op: ConditionCheck) -> Self
fn from(op: ConditionCheck) -> Self
Converts to this type from the input type.
Source§impl From<ConditionCheckTransact> for TransactWriteItem
impl From<ConditionCheckTransact> for TransactWriteItem
Source§fn from(op: ConditionCheckTransact) -> Self
fn from(op: ConditionCheckTransact) -> Self
Converts to this type from the input type.
Source§impl From<ConditionalDelete> for TransactWriteItem
impl From<ConditionalDelete> for TransactWriteItem
Source§fn from(op: ConditionalDelete) -> Self
fn from(op: ConditionalDelete) -> Self
Converts to this type from the input type.
Source§impl From<ConditionalPut> for TransactWriteItem
impl From<ConditionalPut> for TransactWriteItem
Source§fn from(op: ConditionalPut) -> Self
fn from(op: ConditionalPut) -> Self
Converts to this type from the input type.
Source§impl From<ConditionalUpdate> for TransactWriteItem
impl From<ConditionalUpdate> for TransactWriteItem
Source§fn from(op: ConditionalUpdate) -> Self
fn from(op: ConditionalUpdate) -> Self
Converts to this type from the input type.
Source§impl From<Delete> for TransactWriteItem
impl From<Delete> for TransactWriteItem
Source§impl From<DeleteTransact> for TransactWriteItem
impl From<DeleteTransact> for TransactWriteItem
Source§fn from(op: DeleteTransact) -> Self
fn from(op: DeleteTransact) -> Self
Converts to this type from the input type.
Source§impl From<Put> for TransactWriteItem
impl From<Put> for TransactWriteItem
Source§impl From<PutTransact> for TransactWriteItem
impl From<PutTransact> for TransactWriteItem
Source§fn from(op: PutTransact) -> Self
fn from(op: PutTransact) -> Self
Converts to this type from the input type.
Source§impl From<UpdateTransact> for TransactWriteItem
impl From<UpdateTransact> for TransactWriteItem
Source§fn from(op: UpdateTransact) -> Self
fn from(op: UpdateTransact) -> Self
Converts to this type from the input type.
Source§impl From<UpdateWithExpr> for TransactWriteItem
impl From<UpdateWithExpr> for TransactWriteItem
Source§fn from(op: UpdateWithExpr) -> Self
fn from(op: UpdateWithExpr) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransactWriteItem
impl RefUnwindSafe for TransactWriteItem
impl Send for TransactWriteItem
impl Sync for TransactWriteItem
impl Unpin for TransactWriteItem
impl UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.