pub trait IRingListSkillMenu_MenuItem_ExtraSkillMethods: IRingListSkillMenu_MenuItem_ExtraSkill {
// Provided methods
fn get_type(self) -> RingListSkillMenu_MenuItem_ExtraSkill_SkillType { ... }
fn set_type(
self,
value: impl Into<RingListSkillMenu_MenuItem_ExtraSkill_SkillType>,
) { ... }
fn get_sprite(self) -> Sprite { ... }
fn get_skill_name(self) -> Il2CppString { ... }
fn get_skill_help(self) -> Il2CppString { ... }
fn ctor(
self,
root: impl Into<RingListSkillMenu>,
level: impl Into<i32>,
skill_type: impl Into<RingListSkillMenu_MenuItem_ExtraSkill_SkillType>,
is_got_skill: impl Into<bool>,
) { ... }
fn on_select(self) { ... }
}Provided Methods§
Sourcefn get_type(self) -> RingListSkillMenu_MenuItem_ExtraSkill_SkillType
fn get_type(self) -> RingListSkillMenu_MenuItem_ExtraSkill_SkillType
get_Type() overload
Sourcefn set_type(
self,
value: impl Into<RingListSkillMenu_MenuItem_ExtraSkill_SkillType>,
)
fn set_type( self, value: impl Into<RingListSkillMenu_MenuItem_ExtraSkill_SkillType>, )
set_Type(crate::app::ringlistskillmenu::RingListSkillMenu_MenuItem_ExtraSkill_SkillType) overload
Sourcefn get_sprite(self) -> Sprite
fn get_sprite(self) -> Sprite
GetSprite() overload
Sourcefn get_skill_name(self) -> Il2CppString
fn get_skill_name(self) -> Il2CppString
GetSkillName() overload
Sourcefn get_skill_help(self) -> Il2CppString
fn get_skill_help(self) -> Il2CppString
GetSkillHelp() overload
Sourcefn ctor(
self,
root: impl Into<RingListSkillMenu>,
level: impl Into<i32>,
skill_type: impl Into<RingListSkillMenu_MenuItem_ExtraSkill_SkillType>,
is_got_skill: impl Into<bool>,
)
fn ctor( self, root: impl Into<RingListSkillMenu>, level: impl Into<i32>, skill_type: impl Into<RingListSkillMenu_MenuItem_ExtraSkill_SkillType>, is_got_skill: impl Into<bool>, )
.ctor(crate::app::ringlistskillmenu::RingListSkillMenu, i32, crate::app::ringlistskillmenu::RingListSkillMenu_MenuItem_ExtraSkill_SkillType, bool) 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_ExtraSkill> IRingListSkillMenu_MenuItem_ExtraSkillMethods for __T
Available on crate feature
app-ringlistskillmenu only.