pub struct CatalogQuerySet {
pub attribute_name: String,
pub attribute_values: Vec<String>,
}
Expand description
The query filter to return the search result(s) by exact match of the specified attribute_name
and any of the attribute_values
.
Fields§
§attribute_name: String
The name of the attribute to be searched. Matching of the attribute name is exact.
Min Length 1
attribute_values: Vec<String>
The desired values of the search attribute. Matching of the attribute values is exact and case insensitive. A maximum of 250 values may be searched in a request.
Trait Implementations§
Source§impl Clone for CatalogQuerySet
impl Clone for CatalogQuerySet
Source§fn clone(&self) -> CatalogQuerySet
fn clone(&self) -> CatalogQuerySet
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 CatalogQuerySet
impl Debug for CatalogQuerySet
Source§impl Default for CatalogQuerySet
impl Default for CatalogQuerySet
Source§fn default() -> CatalogQuerySet
fn default() -> CatalogQuerySet
Returns the “default value” for a type. Read more
Source§impl PartialEq for CatalogQuerySet
impl PartialEq for CatalogQuerySet
Source§impl Serialize for CatalogQuerySet
impl Serialize for CatalogQuerySet
impl Eq for CatalogQuerySet
impl StructuralPartialEq for CatalogQuerySet
Auto Trait Implementations§
impl Freeze for CatalogQuerySet
impl RefUnwindSafe for CatalogQuerySet
impl Send for CatalogQuerySet
impl Sync for CatalogQuerySet
impl Unpin for CatalogQuerySet
impl UnwindSafe for CatalogQuerySet
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.