Skip to main content

IRefreshUnitSelectRootMethods

Trait IRefreshUnitSelectRootMethods 

Source
pub trait IRefreshUnitSelectRootMethods: IRefreshUnitSelectRoot {
Show 15 methods // Provided methods fn ctor(self) { ... } fn start(self) { ... } fn get_refresh_unit_set_menu_content(self) -> RefreshUnitSetMenuContent { ... } fn get_refresh_unit_select_menu_content( self, ) -> RefreshUnitSelectMenuContent { ... } fn get_refresh_facility_select_menu_content( self, ) -> RefreshFacilitySelectMenuContent { ... } fn close_setting_info_window(self) { ... } fn is_closed_setting_info_window(self) -> bool { ... } fn set_facility_window( self, enabled: impl Into<bool>, facility_data: impl Into<HubFacilityData>, ) { ... } fn set_unit_window( self, enabled: impl Into<bool>, unit: impl Into<Array<Unit>>, ) { ... } fn set_reliance_window( self, enabled: impl Into<bool>, unit0: impl Into<Unit>, unit1: impl Into<Unit>, ) { ... } fn set_active_help_window(self, actived: impl Into<bool>) { ... } fn set_help_window(self, units: impl Into<Array<Unit>>) { ... } fn set_help_window_2( self, caption_mid: impl Into<Il2CppString>, message_mid: impl Into<Il2CppString>, ) { ... } fn close_help_window(self) { ... } fn destroy(self) { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn start(self)

Start() overload

Source

fn get_refresh_unit_set_menu_content(self) -> RefreshUnitSetMenuContent

GetRefreshUnitSetMenuContent() overload

Source

fn get_refresh_unit_select_menu_content(self) -> RefreshUnitSelectMenuContent

GetRefreshUnitSelectMenuContent() overload

Source

fn get_refresh_facility_select_menu_content( self, ) -> RefreshFacilitySelectMenuContent

GetRefreshFacilitySelectMenuContent() overload

Source

fn close_setting_info_window(self)

CloseSettingInfoWindow() overload

Source

fn is_closed_setting_info_window(self) -> bool

IsClosedSettingInfoWindow() overload

Source

fn set_facility_window( self, enabled: impl Into<bool>, facility_data: impl Into<HubFacilityData>, )

SetFacilityWindow(bool, crate::app::hubfacilitydata::HubFacilityData) overload

Source

fn set_unit_window(self, enabled: impl Into<bool>, unit: impl Into<Array<Unit>>)

SetUnitWindow(bool, ::unity::Array<crate::app::unit::Unit>) overload

Source

fn set_reliance_window( self, enabled: impl Into<bool>, unit0: impl Into<Unit>, unit1: impl Into<Unit>, )

SetRelianceWindow(bool, crate::app::unit::Unit, crate::app::unit::Unit) overload

Source

fn set_active_help_window(self, actived: impl Into<bool>)

SetActiveHelpWindow(bool) overload

Source

fn set_help_window(self, units: impl Into<Array<Unit>>)

SetHelpWindow(::unity::Array<crate::app::unit::Unit>) overload

Source

fn set_help_window_2( self, caption_mid: impl Into<Il2CppString>, message_mid: impl Into<Il2CppString>, )

SetHelpWindow(::unity::Il2CppString, ::unity::Il2CppString) overload

Source

fn close_help_window(self)

CloseHelpWindow() overload

Source

fn destroy(self)

Destroy() 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: IRefreshUnitSelectRoot> IRefreshUnitSelectRootMethods for __T

Available on crate feature app-refreshunitselectroot only.