pub trait CookActionTrait {
    // Required methods
    fn get_food_establishment(&self) -> &[FoodEstablishmentProperty];
    fn take_food_establishment(&mut self) -> Vec<FoodEstablishmentProperty>;
    fn get_food_event(&self) -> &[FoodEventProperty];
    fn take_food_event(&mut self) -> Vec<FoodEventProperty>;
    fn get_recipe(&self) -> &[RecipeProperty];
    fn take_recipe(&mut self) -> Vec<RecipeProperty>;
}
Expand description

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

Required Methods§

Implementors§