Skip to main content

IRingListSkillMenu_MenuItem_EngageItemMethods

Trait IRingListSkillMenu_MenuItem_EngageItemMethods 

Source
pub trait IRingListSkillMenu_MenuItem_EngageItemMethods: IRingListSkillMenu_MenuItem_EngageItem {
    // Provided methods
    fn get_item(self) -> ItemData { ... }
    fn set_item(self, value: impl Into<ItemData>) { ... }
    fn ctor(
        self,
        root: impl Into<RingListSkillMenu>,
        level: impl Into<i32>,
        item_data: impl Into<ItemData>,
        is_got_skill: impl Into<bool>,
    ) { ... }
    fn on_select(self) { ... }
}

Provided Methods§

Source

fn get_item(self) -> ItemData

get_Item() overload

Source

fn set_item(self, value: impl Into<ItemData>)

set_Item(crate::app::itemdata::ItemData) overload

Source

fn ctor( self, root: impl Into<RingListSkillMenu>, level: impl Into<i32>, item_data: impl Into<ItemData>, is_got_skill: impl Into<bool>, )

.ctor(crate::app::ringlistskillmenu::RingListSkillMenu, i32, crate::app::itemdata::ItemData, bool) overload

Source

fn on_select(self)

OnSelect() 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_MenuItem_EngageItem> IRingListSkillMenu_MenuItem_EngageItemMethods for __T

Available on crate feature app-ringlistskillmenu only.