pub trait SomeProductsTrait {
    // Required methods
    fn get_inventory_level(&self) -> &[InventoryLevelProperty];
    fn take_inventory_level(&mut self) -> Vec<InventoryLevelProperty>;
}
Expand description

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

Required Methods§

Implementors§