pub struct ListAppend { /* private fields */ }
Expand description
Represents an update expression to append elements to a list.
Prefer Path::list_append
over this.
Implementations§
Source§impl ListAppend
impl ListAppend
pub fn builder<T>(dst: T) -> Builder
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>()?
.list_append()
.list([7, 8, 9].map(Num::new))
.and("bar".parse::<Path>()?.set("a value"));
assert_eq!(r#"SET foo = list_append(foo, [7, 8, 9]), bar = "a value""#, set.to_string());
Trait Implementations§
Source§impl Clone for ListAppend
impl Clone for ListAppend
Source§fn clone(&self) -> ListAppend
fn clone(&self) -> ListAppend
Returns a copy of the value. Read more
1.0.0 · 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 ListAppend
impl Debug for ListAppend
Source§impl Display for ListAppend
impl Display for ListAppend
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 From<ListAppend> for Update
impl From<ListAppend> for Update
Source§fn from(value: ListAppend) -> Self
fn from(value: ListAppend) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ListAppend
impl PartialEq for ListAppend
impl Eq for ListAppend
impl StructuralPartialEq for ListAppend
Auto Trait Implementations§
impl Freeze for ListAppend
impl RefUnwindSafe for ListAppend
impl Send for ListAppend
impl Sync for ListAppend
impl Unpin for ListAppend
impl UnwindSafe for ListAppend
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.