pub trait IRingListSkillMenu_MenuItemMethods: IRingListSkillMenu_MenuItem {
Show 13 methods
// Provided methods
fn get_level(self) -> i32 { ... }
fn set_level(self, value: impl Into<i32>) { ... }
fn get_is_got_s_kill(self) -> bool { ... }
fn set_is_got_s_kill(self, value: impl Into<bool>) { ... }
fn get_is_enable_got_icon(self) -> bool { ... }
fn get_is_enable_unit_got_icon(self) -> bool { ... }
fn get_from_lv(self) -> i32 { ... }
fn ctor(
self,
root: impl Into<RingListSkillMenu>,
level: impl Into<i32>,
is_got_skill: impl Into<bool>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn get_width(self) -> f32 { ... }
fn get_height(self) -> f32 { ... }
fn build_attribute(self) -> BasicMenuItem_Attribute { ... }
fn b_call(self) -> BasicMenu_Result { ... }
}Provided Methods§
Sourcefn get_is_got_s_kill(self) -> bool
fn get_is_got_s_kill(self) -> bool
get_IsGotSKill() overload
Sourcefn set_is_got_s_kill(self, value: impl Into<bool>)
fn set_is_got_s_kill(self, value: impl Into<bool>)
set_IsGotSKill(bool) overload
Sourcefn get_is_enable_got_icon(self) -> bool
fn get_is_enable_got_icon(self) -> bool
get_IsEnableGotIcon() overload
Sourcefn get_is_enable_unit_got_icon(self) -> bool
fn get_is_enable_unit_got_icon(self) -> bool
get_IsEnableUnitGotIcon() overload
Sourcefn get_from_lv(self) -> i32
fn get_from_lv(self) -> i32
get_FromLv() overload
Sourcefn ctor(
self,
root: impl Into<RingListSkillMenu>,
level: impl Into<i32>,
is_got_skill: impl Into<bool>,
)
fn ctor( self, root: impl Into<RingListSkillMenu>, level: impl Into<i32>, is_got_skill: impl Into<bool>, )
.ctor(crate::app::ringlistskillmenu::RingListSkillMenu, i32, bool) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn get_height(self) -> f32
fn get_height(self) -> f32
GetHeight() overload
Sourcefn build_attribute(self) -> BasicMenuItem_Attribute
fn build_attribute(self) -> BasicMenuItem_Attribute
BuildAttribute() overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() 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: IRingListSkillMenu_MenuItem> IRingListSkillMenu_MenuItemMethods for __T
Available on crate feature
app-ringlistskillmenu only.