pub struct CatalogQueryItemVariationsForItemOptionValues {
pub item_option_value_ids: Option<Vec<String>>,
}
Expand description
The query filter to return the item variations containing the specified item option value IDs.
Fields§
§item_option_value_ids: Option<Vec<String>>
A set of CatalogItemOptionValue
IDs to be used to find associated CatalogItemVariation
s.
All ItemVariations that contain all of the given Item Option Values (in any order) will be
returned.
Trait Implementations§
source§impl Clone for CatalogQueryItemVariationsForItemOptionValues
impl Clone for CatalogQueryItemVariationsForItemOptionValues
source§fn clone(&self) -> CatalogQueryItemVariationsForItemOptionValues
fn clone(&self) -> CatalogQueryItemVariationsForItemOptionValues
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 Default for CatalogQueryItemVariationsForItemOptionValues
impl Default for CatalogQueryItemVariationsForItemOptionValues
source§fn default() -> CatalogQueryItemVariationsForItemOptionValues
fn default() -> CatalogQueryItemVariationsForItemOptionValues
Returns the “default value” for a type. Read more
source§impl PartialEq<CatalogQueryItemVariationsForItemOptionValues> for CatalogQueryItemVariationsForItemOptionValues
impl PartialEq<CatalogQueryItemVariationsForItemOptionValues> for CatalogQueryItemVariationsForItemOptionValues
source§fn eq(&self, other: &CatalogQueryItemVariationsForItemOptionValues) -> bool
fn eq(&self, other: &CatalogQueryItemVariationsForItemOptionValues) -> bool
impl Eq for CatalogQueryItemVariationsForItemOptionValues
impl StructuralEq for CatalogQueryItemVariationsForItemOptionValues
impl StructuralPartialEq for CatalogQueryItemVariationsForItemOptionValues
Auto Trait Implementations§
impl RefUnwindSafe for CatalogQueryItemVariationsForItemOptionValues
impl Send for CatalogQueryItemVariationsForItemOptionValues
impl Sync for CatalogQueryItemVariationsForItemOptionValues
impl Unpin for CatalogQueryItemVariationsForItemOptionValues
impl UnwindSafe for CatalogQueryItemVariationsForItemOptionValues
Blanket Implementations§
source§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,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.