pub trait IRefreshUnitSelectMenuItemContentMethods: IRefreshUnitSelectMenuItemContent {
// Provided methods
fn get_m_selected(self) -> bool { ... }
fn set_m_selected(self, value: impl Into<bool>) { ... }
fn get_m_decided(self) -> bool { ... }
fn set_m_decided(self, value: impl Into<bool>) { ... }
fn build(self, menu_item: impl Into<BasicMenuItem>) { ... }
fn set_content(self, m_unit: impl Into<Unit>) { ... }
fn set_unit_name(self, mid: impl Into<Il2CppString>) { ... }
fn update_text_color(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_m_selected(self) -> bool
fn get_m_selected(self) -> bool
get_m_Selected() overload
Sourcefn set_m_selected(self, value: impl Into<bool>)
fn set_m_selected(self, value: impl Into<bool>)
set_m_Selected(bool) overload
Sourcefn get_m_decided(self) -> bool
fn get_m_decided(self) -> bool
get_m_Decided() overload
Sourcefn set_m_decided(self, value: impl Into<bool>)
fn set_m_decided(self, value: impl Into<bool>)
set_m_Decided(bool) overload
Sourcefn build(self, menu_item: impl Into<BasicMenuItem>)
fn build(self, menu_item: impl Into<BasicMenuItem>)
Build(crate::app::basicmenuitem::BasicMenuItem) overload
Sourcefn set_content(self, m_unit: impl Into<Unit>)
fn set_content(self, m_unit: impl Into<Unit>)
SetContent(crate::app::unit::Unit) overload
Sourcefn set_unit_name(self, mid: impl Into<Il2CppString>)
fn set_unit_name(self, mid: impl Into<Il2CppString>)
SetUnitName(::unity::Il2CppString) overload
Sourcefn update_text_color(self)
fn update_text_color(self)
UpdateTextColor() 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: IRefreshUnitSelectMenuItemContent> IRefreshUnitSelectMenuItemContentMethods for __T
Available on crate feature
app-refreshunitselectmenuitemcontent only.