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
sourceimpl Clone for CatalogQueryItemVariationsForItemOptionValues
impl Clone for CatalogQueryItemVariationsForItemOptionValues
sourcefn clone(&self) -> CatalogQueryItemVariationsForItemOptionValues
fn clone(&self) -> CatalogQueryItemVariationsForItemOptionValues
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 Default for CatalogQueryItemVariationsForItemOptionValues
impl Default for CatalogQueryItemVariationsForItemOptionValues
sourcefn default() -> CatalogQueryItemVariationsForItemOptionValues
fn default() -> CatalogQueryItemVariationsForItemOptionValues
Returns the “default value” for a type. Read more
sourceimpl PartialEq<CatalogQueryItemVariationsForItemOptionValues> for CatalogQueryItemVariationsForItemOptionValues
impl PartialEq<CatalogQueryItemVariationsForItemOptionValues> for CatalogQueryItemVariationsForItemOptionValues
sourcefn 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
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.