pub struct Set { /* private fields */ }Expand description
Represents a SET statement for an update expression. Most of the time
you won’t use this directly.
See also: Update, Path::set, Path::if_not_exists, Path::math
Path::list_append, Set::and
§Examples
use dynamodb_expression::{Path, update::Set};
let set = Set::from("foo".parse::<Path>().unwrap().math().add(1));
assert_eq!("SET foo = foo + 1", set.to_string());
let set_foo = Set::from("foo".parse::<Path>().unwrap().math().add(1));
assert_eq!("SET foo = foo + 1", set_foo.to_string());
let set_bar = Set::from("bar".parse::<Path>().unwrap().if_not_exists().set("a value"));
assert_eq!(r#"SET bar = if_not_exists(bar, "a value")"#, set_bar.to_string());
let set = set_foo.and(set_bar);
assert_eq!(
r#"SET foo = foo + 1, bar = if_not_exists(bar, "a value")"#,
set.to_string(),
);
let set = Set::from("foo".parse::<Path>().unwrap().list_append().list(["a", "b", "c"]));
assert_eq!(r#"SET foo = list_append(foo, ["a", "b", "c"])"#, set.to_string());Implementations§
Source§impl Set
impl Set
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, update::Set};
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<T> FromIterator<T> for Set
impl<T> FromIterator<T> for Set
Source§fn from_iter<I>(iter: I) -> Selfwhere
I: IntoIterator<Item = T>,
fn from_iter<I>(iter: I) -> Selfwhere
I: IntoIterator<Item = T>,
Creates a value from an iterator. Read more
impl Eq for Set
impl StructuralPartialEq for Set
Auto Trait Implementations§
impl Freeze for Set
impl RefUnwindSafe for Set
impl Send for Set
impl Sync for Set
impl Unpin for Set
impl UnwindSafe for Set
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.