pub trait IBasicItemMenuItemMethods: IBasicItemMenuItem {
// Provided methods
fn get_unit_item(self) -> UnitItem { ... }
fn get_unit(self) -> Unit { ... }
fn get_reciever_unit(self) -> Unit { ... }
fn get_blank_text(self) -> Il2CppString { ... }
fn is_visible_item_icon_on_blank(self) -> bool { ... }
fn on_build(self) { ... }
fn on_build_menu_item_content(self) { ... }
fn set_text_color(
self,
color: impl Into<Color>,
b_inactive: impl Into<bool>,
) { ... }
fn set_initial_color(self) { ... }
fn is_effective(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_unit_item(self) -> UnitItem
fn get_unit_item(self) -> UnitItem
GetUnitItem() overload
Sourcefn get_reciever_unit(self) -> Unit
fn get_reciever_unit(self) -> Unit
GetRecieverUnit() overload
Sourcefn get_blank_text(self) -> Il2CppString
fn get_blank_text(self) -> Il2CppString
GetBlankText() overload
Sourcefn is_visible_item_icon_on_blank(self) -> bool
fn is_visible_item_icon_on_blank(self) -> bool
IsVisibleItemIconOnBlank() overload
OnBuildMenuItemContent() overload
Sourcefn set_text_color(self, color: impl Into<Color>, b_inactive: impl Into<bool>)
fn set_text_color(self, color: impl Into<Color>, b_inactive: impl Into<bool>)
SetTextColor(crate::unity_engine::color::Color, bool) overload
Sourcefn set_initial_color(self)
fn set_initial_color(self)
SetInitialColor() overload
Sourcefn is_effective(self) -> bool
fn is_effective(self) -> bool
IsEffective() 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: IBasicItemMenuItem> IBasicItemMenuItemMethods for __T
Available on crate feature
app-basicitemmenuitem only.