Enum dynamodb_expression::update::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, other: T) -> SetRemove
pub fn and<T>(self, other: T) -> SetRemove
Add an additional Set or Remove statement to this expression.
use dynamodb_expression::{Num, Path};
let set = "foo"
.parse::<Path>()?
.set(Num::new(7))
.and("bar".parse::<Path>()?.set("a value"))
.and("baz".parse::<Path>()?.remove());
assert_eq!(r#"SET foo = 7, bar = "a value" REMOVE baz"#, 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 Q
impl<Q, K> Equivalent<K> for Q
§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 Q
impl<Q, K> Equivalent<K> for Q
§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.