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) -> Update
pub fn and<T>(self, other: T) -> Update
Add an additional Update 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.
impl Eq for SetAction
impl StructuralPartialEq for SetAction
Auto Trait Implementations§
impl Freeze for SetAction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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.