pub trait CompoundPriceSpecificationTrait {
    // Required methods
    fn get_price_component(&self) -> &[PriceComponentProperty];
    fn take_price_component(&mut self) -> Vec<PriceComponentProperty>;
    fn get_price_type(&self) -> &[PriceTypeProperty];
    fn take_price_type(&mut self) -> Vec<PriceTypeProperty>;
}
Expand description

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

Required Methods§

Implementors§