pub trait IMyRoomRelianceSelectMethods: IMyRoomRelianceSelect {
// Provided methods
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<MyRoomRelianceSelectContent>,
) { ... }
fn rebuild_instant_hide(self) { ... }
fn get_name(self) -> Il2CppString { ... }
fn after_build(self) { ... }
fn update_unit(self, unit: impl Into<Unit>) { ... }
fn rebuild_menu(self) { ... }
fn update_select_menu_item(self) { ... }
fn force_select_unit(self, unit: impl Into<Unit>) { ... }
fn force_update_menu_item(self) { ... }
fn next_select(self) { ... }
fn prev_select(self) { ... }
fn get_current_unit(self) -> Unit { ... }
}Provided Methods§
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<MyRoomRelianceSelectContent>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<MyRoomRelianceSelectContent>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::myroomrelianceselectcontent::MyRoomRelianceSelectContent) overload
Sourcefn rebuild_instant_hide(self)
fn rebuild_instant_hide(self)
RebuildInstantHide() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn after_build(self)
fn after_build(self)
AfterBuild() overload
Sourcefn update_unit(self, unit: impl Into<Unit>)
fn update_unit(self, unit: impl Into<Unit>)
UpdateUnit(crate::app::unit::Unit) overload
RebuildMenu() overload
UpdateSelectMenuItem() overload
Sourcefn force_select_unit(self, unit: impl Into<Unit>)
fn force_select_unit(self, unit: impl Into<Unit>)
ForceSelectUnit(crate::app::unit::Unit) overload
ForceUpdateMenuItem() overload
Sourcefn next_select(self)
fn next_select(self)
NextSelect() overload
Sourcefn prev_select(self)
fn prev_select(self)
PrevSelect() overload
Sourcefn get_current_unit(self) -> Unit
fn get_current_unit(self) -> Unit
GetCurrentUnit() 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: IMyRoomRelianceSelect> IMyRoomRelianceSelectMethods for __T
Available on crate feature
app-myroomrelianceselect only.