Fields
exact: Option<String>
For exact matching, this filter causes the search to return customer profiles whose field value are identical to the value provided in the query.
fuzzy: Option<String>
For fuzzy matching, this filter causes the search to return customer profiles whose field value has a token-wise partial match against the filtering expression in the query For example with email address, with Steven gmail provided in a search query,the search returns customers whose email address can be steven.johnson@gmail.com or mygmail@stevensbakery.com.
Trait Implementations
sourceimpl Clone for SearchCustomersTextFilter
impl Clone for SearchCustomersTextFilter
sourcefn clone(&self) -> SearchCustomersTextFilter
fn clone(&self) -> SearchCustomersTextFilter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SearchCustomersTextFilter
impl Debug for SearchCustomersTextFilter
sourceimpl Default for SearchCustomersTextFilter
impl Default for SearchCustomersTextFilter
sourcefn default() -> SearchCustomersTextFilter
fn default() -> SearchCustomersTextFilter
Returns the “default value” for a type. Read more
sourceimpl PartialEq<SearchCustomersTextFilter> for SearchCustomersTextFilter
impl PartialEq<SearchCustomersTextFilter> for SearchCustomersTextFilter
sourcefn eq(&self, other: &SearchCustomersTextFilter) -> bool
fn eq(&self, other: &SearchCustomersTextFilter) -> bool
sourceimpl Serialize for SearchCustomersTextFilter
impl Serialize for SearchCustomersTextFilter
impl Eq for SearchCustomersTextFilter
impl StructuralEq for SearchCustomersTextFilter
impl StructuralPartialEq for SearchCustomersTextFilter
Auto Trait Implementations
impl RefUnwindSafe for SearchCustomersTextFilter
impl Send for SearchCustomersTextFilter
impl Sync for SearchCustomersTextFilter
impl Unpin for SearchCustomersTextFilter
impl UnwindSafe for SearchCustomersTextFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.