Enum dynamodb_expression::update::set::SetAction
source · pub enum SetAction {
Assign(Assign),
Math(Math),
ListAppend(ListAppend),
IfNotExists(IfNotExists),
}
Expand description
Represents an action to take in a SET
statement for an update expression.
Variants§
Assign(Assign)
Assign a value in a SET
statement for an update expression.
See also: Assign
Math(Math)
Perform math against a value in a SET
statement for an update expression.
See also: Math
ListAppend(ListAppend)
Add values to a list in a SET
statement for an update expression.
See also: ListAppend
IfNotExists(IfNotExists)
Assign a value only if it doesn’t exist.
See also: IfNotExists
Implementations§
source§impl SetAction
impl SetAction
sourcepub fn and<T>(self, action: T) -> Setwhere
T: Into<Set>,
pub fn and<T>(self, action: T) -> Setwhere T: Into<Set>,
Add an additional action to this SET
statement.
use dynamodb_expression::{Num, Path, update::SetAction};
let set = SetAction::from(Path::new_name("foo").assign(Num::new(7)))
.and(Path::new_name("bar").assign("a value"));
assert_eq!(r#"SET foo = 7, bar = "a value""#, set.to_string());
Trait Implementations§
source§impl From<IfNotExists> for SetAction
impl From<IfNotExists> for SetAction
source§fn from(if_not_exists: IfNotExists) -> Self
fn from(if_not_exists: IfNotExists) -> Self
Converts to this type from the input type.
source§impl From<ListAppend> for SetAction
impl From<ListAppend> for SetAction
source§fn from(append: ListAppend) -> Self
fn from(append: ListAppend) -> Self
Converts to this type from the input type.
source§impl PartialEq for SetAction
impl PartialEq for SetAction
impl Eq for SetAction
impl StructuralEq for SetAction
impl StructuralPartialEq for SetAction
Auto Trait Implementations§
impl RefUnwindSafe for SetAction
impl Send for SetAction
impl Sync for SetAction
impl Unpin for SetAction
impl UnwindSafe for SetAction
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.