pub struct CatalogQueryText {
pub keywords: Vec<String>,
}
Expand description
The query filter to return the search result whose searchable attribute values contain all of the specified keywords or tokens, independent of the token order or case.
Fields§
§keywords: Vec<String>
A list of 1, 2, or 3 search keywords. Keywords with fewer than 3 characters are ignored.
Trait Implementations§
Source§impl Clone for CatalogQueryText
impl Clone for CatalogQueryText
Source§fn clone(&self) -> CatalogQueryText
fn clone(&self) -> CatalogQueryText
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CatalogQueryText
impl Debug for CatalogQueryText
Source§impl Default for CatalogQueryText
impl Default for CatalogQueryText
Source§fn default() -> CatalogQueryText
fn default() -> CatalogQueryText
Returns the “default value” for a type. Read more
Source§impl PartialEq for CatalogQueryText
impl PartialEq for CatalogQueryText
Source§impl Serialize for CatalogQueryText
impl Serialize for CatalogQueryText
impl Eq for CatalogQueryText
impl StructuralPartialEq for CatalogQueryText
Auto Trait Implementations§
impl Freeze for CatalogQueryText
impl RefUnwindSafe for CatalogQueryText
impl Send for CatalogQueryText
impl Sync for CatalogQueryText
impl Unpin for CatalogQueryText
impl UnwindSafe for CatalogQueryText
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.