pub trait IHubCookingStartMenuSequenceMethods: IHubCookingStartMenuSequence {
Show 13 methods
// Provided methods
fn ctor(
self,
decide_event_handler: impl Into<HubCookingStartMenuSequence_DecideEventHandler>,
end_event_handler: impl Into<Action>,
) { ... }
fn create_history(self) { ... }
fn open_select_unit_menu(self) { ... }
fn post_select_unit(self) { ... }
fn open_select_food_menu(self) { ... }
fn post_open_food_menu(self) { ... }
fn open_select_foodstuff_menu(self) { ... }
fn open_confirm_dialog(self) { ... }
fn return_select_foodstuff(self) { ... }
fn decide(self) { ... }
fn close_all_content(self) { ... }
fn delete_history(self) -> IEnumerator { ... }
fn end(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
decide_event_handler: impl Into<HubCookingStartMenuSequence_DecideEventHandler>,
end_event_handler: impl Into<Action>,
)
fn ctor( self, decide_event_handler: impl Into<HubCookingStartMenuSequence_DecideEventHandler>, end_event_handler: impl Into<Action>, )
.ctor(crate::app::cooking_menu::hubcookingstartmenusequence::HubCookingStartMenuSequence_DecideEventHandler, crate::system::action::Action) overload
Sourcefn create_history(self)
fn create_history(self)
CreateHistory() overload
OpenSelectUnitMenu() overload
Sourcefn post_select_unit(self)
fn post_select_unit(self)
PostSelectUnit() overload
OpenSelectFoodMenu() overload
PostOpenFoodMenu() overload
OpenSelectFoodstuffMenu() overload
Sourcefn open_confirm_dialog(self)
fn open_confirm_dialog(self)
OpenConfirmDialog() overload
Sourcefn return_select_foodstuff(self)
fn return_select_foodstuff(self)
ReturnSelectFoodstuff() overload
Sourcefn close_all_content(self)
fn close_all_content(self)
CloseAllContent() overload
Sourcefn delete_history(self) -> IEnumerator
fn delete_history(self) -> IEnumerator
DeleteHistory() 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: IHubCookingStartMenuSequence> IHubCookingStartMenuSequenceMethods for __T
Available on crate feature
app-cooking_menu-hubcookingstartmenusequence only.