pub trait IFoodstuffMenuMethods: IFoodstuffMenu {
// Provided methods
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<FoodstuffMenuContent>,
decide_event_handler: impl Into<FoodstuffMenu_DecideEventHandler>,
cancel_event_handler: impl Into<FoodstuffMenu_CancelEventHandler>,
) { ... }
fn a_call(self) -> BasicMenu_Result { ... }
fn b_call(self) -> BasicMenu_Result { ... }
fn after_build(self) { ... }
fn on_cursor_move_end(self) { ... }
fn get_foodstuff_menu_item_current(self) -> FoodstuffMenu_FoodstuffMenuItem { ... }
fn get_foodstuff_menu_item(
self,
index: impl Into<i32>,
) -> FoodstuffMenu_FoodstuffMenuItem { ... }
fn get_selected_foodstuffs(self) -> List_1<FoodstuffData> { ... }
fn on_dispose(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<FoodstuffMenuContent>,
decide_event_handler: impl Into<FoodstuffMenu_DecideEventHandler>,
cancel_event_handler: impl Into<FoodstuffMenu_CancelEventHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<FoodstuffMenuContent>, decide_event_handler: impl Into<FoodstuffMenu_DecideEventHandler>, cancel_event_handler: impl Into<FoodstuffMenu_CancelEventHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::cooking_menu::foodstuffmenucontent::FoodstuffMenuContent, crate::app::cooking_menu::foodstuffmenu::FoodstuffMenu_DecideEventHandler, crate::app::cooking_menu::foodstuffmenu::FoodstuffMenu_CancelEventHandler) overload
Sourcefn a_call(self) -> BasicMenu_Result
fn a_call(self) -> BasicMenu_Result
ACall() overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() overload
Sourcefn after_build(self)
fn after_build(self)
AfterBuild() overload
Sourcefn on_cursor_move_end(self)
fn on_cursor_move_end(self)
OnCursorMoveEnd() overload
GetFoodstuffMenuItemCurrent() overload
GetFoodstuffMenuItem(i32) overload
Sourcefn get_selected_foodstuffs(self) -> List_1<FoodstuffData>
fn get_selected_foodstuffs(self) -> List_1<FoodstuffData>
GetSelectedFoodstuffs() overload
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() 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§
impl<__T: IFoodstuffMenu> IFoodstuffMenuMethods for __T
Available on crate feature
app-cooking_menu-foodstuffmenu only.