pub trait IShopSellEmptyMenuItemMethods: IShopSellEmptyMenuItem {
// Provided methods
fn ctor(
self,
select_event_handler: impl Into<ShopSellMenu_SelectEventHandler>,
change_unit_to_prev_event_handler: impl Into<ShopSellMenu_ChangeUnitToPrevEventHandler>,
change_unit_to_next_event_handler: impl Into<ShopSellMenu_ChangeUnitToNextEventHandler>,
) { ... }
fn build_attribute(self) -> BasicMenuItem_Attribute { ... }
fn on_select(self) { ... }
fn a_call(self) -> BasicMenu_Result { ... }
fn custom_call(self) -> BasicMenu_Result { ... }
}Provided Methods§
Sourcefn ctor(
self,
select_event_handler: impl Into<ShopSellMenu_SelectEventHandler>,
change_unit_to_prev_event_handler: impl Into<ShopSellMenu_ChangeUnitToPrevEventHandler>,
change_unit_to_next_event_handler: impl Into<ShopSellMenu_ChangeUnitToNextEventHandler>,
)
fn ctor( self, select_event_handler: impl Into<ShopSellMenu_SelectEventHandler>, change_unit_to_prev_event_handler: impl Into<ShopSellMenu_ChangeUnitToPrevEventHandler>, change_unit_to_next_event_handler: impl Into<ShopSellMenu_ChangeUnitToNextEventHandler>, )
.ctor(crate::app::shopsellmenu::ShopSellMenu_SelectEventHandler, crate::app::shopsellmenu::ShopSellMenu_ChangeUnitToPrevEventHandler, crate::app::shopsellmenu::ShopSellMenu_ChangeUnitToNextEventHandler) overload
Sourcefn build_attribute(self) -> BasicMenuItem_Attribute
fn build_attribute(self) -> BasicMenuItem_Attribute
BuildAttribute() overload
Sourcefn a_call(self) -> BasicMenu_Result
fn a_call(self) -> BasicMenu_Result
ACall() overload
Sourcefn custom_call(self) -> BasicMenu_Result
fn custom_call(self) -> BasicMenu_Result
CustomCall() 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: IShopSellEmptyMenuItem> IShopSellEmptyMenuItemMethods for __T
Available on crate feature
app-shopsellemptymenuitem only.