Struct dynamodb_expression::condition::BeginsWith
source · pub struct BeginsWith { /* private fields */ }
Expand description
The DynamoDB begins_with
function. True if the attribute specified by
the Path
begins with a particular substring.
BeginsWith
can take a string or a reference to an extended attribute
value. Here’s an example.
use dynamodb_expression::{condition::BeginsWith, value::Ref, Path};
let begins_with = BeginsWith::new(Path::new_name("foo"), "T");
assert_eq!(r#"begins_with(foo, "T")"#, begins_with.to_string());
let begins_with = BeginsWith::new(Path::new_name("foo"), Ref::new("prefix"));
assert_eq!(r#"begins_with(foo, :prefix)"#, begins_with.to_string());
See also: Path::begins_with
, Key::begins_with
, Ref
Implementations§
source§impl BeginsWith
impl BeginsWith
Trait Implementations§
source§impl Clone for BeginsWith
impl Clone for BeginsWith
source§fn clone(&self) -> BeginsWith
fn clone(&self) -> BeginsWith
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 BeginsWith
impl Debug for BeginsWith
source§impl Display for BeginsWith
impl Display for BeginsWith
source§impl From<BeginsWith> for Condition
impl From<BeginsWith> for Condition
source§fn from(condition: BeginsWith) -> Self
fn from(condition: BeginsWith) -> Self
Converts to this type from the input type.
source§impl PartialEq for BeginsWith
impl PartialEq for BeginsWith
source§fn eq(&self, other: &BeginsWith) -> bool
fn eq(&self, other: &BeginsWith) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for BeginsWith
impl StructuralEq for BeginsWith
impl StructuralPartialEq for BeginsWith
Auto Trait Implementations§
impl RefUnwindSafe for BeginsWith
impl Send for BeginsWith
impl Sync for BeginsWith
impl Unpin for BeginsWith
impl UnwindSafe for BeginsWith
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.