Skip to main content

IDishSelectMenu_DishSelectMenuItemMethods

Trait IDishSelectMenu_DishSelectMenuItemMethods 

Source
pub trait IDishSelectMenu_DishSelectMenuItemMethods: IDishSelectMenu_DishSelectMenuItem {
    // Provided methods
    fn ctor(
        self,
        food_data: impl Into<FoodData>,
        decide_event_handler: impl Into<DishSelectMenu_DecideEventHandler>,
        select_event_handler: impl Into<DishSelectMenu_SelectEventHandler>,
    ) { ... }
    fn a_call(self) -> BasicMenu_Result { ... }
    fn build_attribute(self) -> BasicMenuItem_Attribute { ... }
    fn on_select(self) { ... }
    fn get_food(self) -> FoodData { ... }
}

Provided Methods§

Source

fn ctor( self, food_data: impl Into<FoodData>, decide_event_handler: impl Into<DishSelectMenu_DecideEventHandler>, select_event_handler: impl Into<DishSelectMenu_SelectEventHandler>, )

.ctor(crate::app::fooddata::FoodData, crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DecideEventHandler, crate::app::cooking_menu::dishselectmenu::DishSelectMenu_SelectEventHandler) overload

Source

fn a_call(self) -> BasicMenu_Result

ACall() overload

Source

fn build_attribute(self) -> BasicMenuItem_Attribute

BuildAttribute() overload

Source

fn on_select(self)

OnSelect() overload

Source

fn get_food(self) -> FoodData

GetFood() overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: IDishSelectMenu_DishSelectMenuItem> IDishSelectMenu_DishSelectMenuItemMethods for __T

Available on crate feature app-cooking_menu-dishselectmenu only.