Skip to main content

IRingListSkillMenuMethods

Trait IRingListSkillMenuMethods 

Source
pub trait IRingListSkillMenuMethods: IRingListSkillMenu {
Show 17 methods // Provided methods fn get_root_object(self) -> GameObject { ... } fn get_item_help_wdw(self) -> RingListSkillMenu_ItemHelpWindow { ... } fn set_item_help_wdw( self, value: impl Into<RingListSkillMenu_ItemHelpWindow>, ) { ... } fn get_skill_help_wdw(self) -> RingListSkillMenu_SkillHelpWindow { ... } fn set_skill_help_wdw( self, value: impl Into<RingListSkillMenu_SkillHelpWindow>, ) { ... } fn get_is_enable_got_icon(self) -> bool { ... } fn set_is_enable_got_icon(self, value: impl Into<bool>) { ... } fn get_is_enable_unit_got_icon(self) -> bool { ... } fn set_is_enable_unit_got_icon(self, value: impl Into<bool>) { ... } fn get_from_lv(self) -> i32 { ... } fn set_from_lv(self, value: impl Into<i32>) { ... } fn get_menu(self) -> RingListSkillMenu_Menu { ... } fn ctor(self, root_object: impl Into<GameObject>) { ... } fn create_menu( self, super_: impl Into<ProcInst>, is_bind_parent: impl Into<bool>, is_enable_got_icon: impl Into<bool>, is_enable_unit_got_icon: impl Into<bool>, god_page_data: impl Into<RingListSequence_GodPageData>, from_lv: impl Into<i32>, cancel: impl Into<RingListSkillMenu_CancelEventHandler>, is_ring_select_menu: impl Into<bool>, ) -> bool { ... } fn delete(self) { ... } fn inc_suspend(self) { ... } fn dec_suspend(self) { ... }
}

Provided Methods§

Source

fn get_root_object(self) -> GameObject

get_RootObject() overload

Source

fn get_item_help_wdw(self) -> RingListSkillMenu_ItemHelpWindow

get_ItemHelpWdw() overload

Source

fn set_item_help_wdw(self, value: impl Into<RingListSkillMenu_ItemHelpWindow>)

set_ItemHelpWdw(crate::app::ringlistskillmenu::RingListSkillMenu_ItemHelpWindow) overload

Source

fn get_skill_help_wdw(self) -> RingListSkillMenu_SkillHelpWindow

get_SkillHelpWdw() overload

Source

fn set_skill_help_wdw(self, value: impl Into<RingListSkillMenu_SkillHelpWindow>)

set_SkillHelpWdw(crate::app::ringlistskillmenu::RingListSkillMenu_SkillHelpWindow) overload

Source

fn get_is_enable_got_icon(self) -> bool

get_IsEnableGotIcon() overload

Source

fn set_is_enable_got_icon(self, value: impl Into<bool>)

set_IsEnableGotIcon(bool) overload

Source

fn get_is_enable_unit_got_icon(self) -> bool

get_IsEnableUnitGotIcon() overload

Source

fn set_is_enable_unit_got_icon(self, value: impl Into<bool>)

set_IsEnableUnitGotIcon(bool) overload

Source

fn get_from_lv(self) -> i32

get_FromLv() overload

Source

fn set_from_lv(self, value: impl Into<i32>)

set_FromLv(i32) overload

Source

fn get_menu(self) -> RingListSkillMenu_Menu

GetMenu() overload

Source

fn ctor(self, root_object: impl Into<GameObject>)

.ctor(crate::unity_engine::gameobject::GameObject) overload

Source

fn create_menu( self, super_: impl Into<ProcInst>, is_bind_parent: impl Into<bool>, is_enable_got_icon: impl Into<bool>, is_enable_unit_got_icon: impl Into<bool>, god_page_data: impl Into<RingListSequence_GodPageData>, from_lv: impl Into<i32>, cancel: impl Into<RingListSkillMenu_CancelEventHandler>, is_ring_select_menu: impl Into<bool>, ) -> bool

CreateMenu(crate::app::procinst::ProcInst, bool, bool, bool, crate::app::ringlistsequence::RingListSequence_GodPageData, i32, crate::app::ringlistskillmenu::RingListSkillMenu_CancelEventHandler, bool) overload

Source

fn delete(self)

Delete() overload

Source

fn inc_suspend(self)

IncSuspend() overload

Source

fn dec_suspend(self)

DecSuspend() 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§

Source§

impl<__T: IRingListSkillMenu> IRingListSkillMenuMethods for __T

Available on crate feature app-ringlistskillmenu only.