Skip to main content

ITradeMenuItemMethods

Trait ITradeMenuItemMethods 

Source
pub trait ITradeMenuItemMethods: ITradeMenuItem {
Show 20 methods // Provided methods fn build_attribute(self) -> BasicMenuItem_Attribute { ... } fn a_call(self) -> BasicMenu_Result { ... } fn b_call(self) -> BasicMenu_Result { ... } fn get_width(self) -> f32 { ... } fn get_height(self) -> f32 { ... } fn get_unit(self) -> Unit { ... } fn get_unit_item(self) -> UnitItem { ... } fn get_trade_menu(self) -> TradeMenu { ... } fn get_left_unit(self) -> Unit { ... } fn get_right_unit(self) -> Unit { ... } fn get_left_initial_select_index(self) -> i32 { ... } fn get_right_initial_select_index(self) -> i32 { ... } fn set_done(self) { ... } fn is_done(self) -> bool { ... } fn on_trade(self) { ... } fn on_end(self) { ... } fn build_attribute_select(self) -> BasicMenuItem_Attribute { ... } fn trade(self) -> BasicMenu_Result { ... } fn select_first_item(self) -> BasicMenu_Result { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn build_attribute(self) -> BasicMenuItem_Attribute

BuildAttribute() overload

Source

fn a_call(self) -> BasicMenu_Result

ACall() overload

Source

fn b_call(self) -> BasicMenu_Result

BCall() overload

Source

fn get_width(self) -> f32

GetWidth() overload

Source

fn get_height(self) -> f32

GetHeight() overload

Source

fn get_unit(self) -> Unit

GetUnit() overload

Source

fn get_unit_item(self) -> UnitItem

GetUnitItem() overload

Source

fn get_trade_menu(self) -> TradeMenu

GetTradeMenu() overload

Source

fn get_left_unit(self) -> Unit

GetLeftUnit() overload

Source

fn get_right_unit(self) -> Unit

GetRightUnit() overload

Source

fn get_left_initial_select_index(self) -> i32

GetLeftInitialSelectIndex() overload

Source

fn get_right_initial_select_index(self) -> i32

GetRightInitialSelectIndex() overload

Source

fn set_done(self)

SetDone() overload

Source

fn is_done(self) -> bool

IsDone() overload

Source

fn on_trade(self)

OnTrade() overload

Source

fn on_end(self)

OnEnd() overload

Source

fn build_attribute_select(self) -> BasicMenuItem_Attribute

BuildAttributeSelect() overload

Source

fn trade(self) -> BasicMenu_Result

Trade() overload

Source

fn select_first_item(self) -> BasicMenu_Result

SelectFirstItem() overload

Source

fn ctor(self)

.ctor() 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: ITradeMenuItem> ITradeMenuItemMethods for __T

Available on crate feature app-trademenuitem only.