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§
GetRefreshUnitSetMenuContent() overload
GetRefreshUnitSelectMenuContent() overload
GetRefreshFacilitySelectMenuContent() overload
Sourcefn close_setting_info_window(self)
fn close_setting_info_window(self)
CloseSettingInfoWindow() overload
Sourcefn is_closed_setting_info_window(self) -> bool
fn is_closed_setting_info_window(self) -> bool
IsClosedSettingInfoWindow() overload
Sourcefn set_facility_window(
self,
enabled: impl Into<bool>,
facility_data: impl Into<HubFacilityData>,
)
fn set_facility_window( self, enabled: impl Into<bool>, facility_data: impl Into<HubFacilityData>, )
SetFacilityWindow(bool, crate::app::hubfacilitydata::HubFacilityData) overload
Sourcefn set_unit_window(self, enabled: impl Into<bool>, unit: impl Into<Array<Unit>>)
fn set_unit_window(self, enabled: impl Into<bool>, unit: impl Into<Array<Unit>>)
SetUnitWindow(bool, ::unity::Array<crate::app::unit::Unit>) overload
Sourcefn set_reliance_window(
self,
enabled: impl Into<bool>,
unit0: impl Into<Unit>,
unit1: impl Into<Unit>,
)
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
Sourcefn set_active_help_window(self, actived: impl Into<bool>)
fn set_active_help_window(self, actived: impl Into<bool>)
SetActiveHelpWindow(bool) overload
Sourcefn set_help_window(self, units: impl Into<Array<Unit>>)
fn set_help_window(self, units: impl Into<Array<Unit>>)
SetHelpWindow(::unity::Array<crate::app::unit::Unit>) overload
Sourcefn set_help_window_2(
self,
caption_mid: impl Into<Il2CppString>,
message_mid: impl Into<Il2CppString>,
)
fn set_help_window_2( self, caption_mid: impl Into<Il2CppString>, message_mid: impl Into<Il2CppString>, )
SetHelpWindow(::unity::Il2CppString, ::unity::Il2CppString) overload
Sourcefn close_help_window(self)
fn close_help_window(self)
CloseHelpWindow() 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: IRefreshUnitSelectRoot> IRefreshUnitSelectRootMethods for __T
app-refreshunitselectroot only.