pub trait ProductGroupTrait {
    // Required methods
    fn get_has_variant(&self) -> &[HasVariantProperty];
    fn take_has_variant(&mut self) -> Vec<HasVariantProperty>;
    fn get_product_group_id(&self) -> &[ProductGroupIdProperty];
    fn take_product_group_id(&mut self) -> Vec<ProductGroupIdProperty>;
    fn get_varies_by(&self) -> &[VariesByProperty];
    fn take_varies_by(&mut self) -> Vec<VariesByProperty>;
}
Expand description

This trait is for properties from https://schema.org/ProductGroup.

Required Methods§

Implementors§