Skip to main content

IGiftMenuItemSubMethods

Trait IGiftMenuItemSubMethods 

Source
pub trait IGiftMenuItemSubMethods: IGiftMenuItemSub {
    // Provided methods
    fn get_is_active(self) -> bool { ... }
    fn set_is_active(self, value: impl Into<bool>) { ... }
    fn get_is_active_select(self) -> bool { ... }
    fn set_is_active_select(self, value: impl Into<bool>) { ... }
    fn ctor(self, item: impl Into<ItemData>, unit: impl Into<Unit>) { ... }
    fn get_name(self) -> Il2CppString { ... }
    fn get_count_text(self) -> Il2CppString { ... }
    fn build_attribute(self) -> BasicMenuItem_Attribute { ... }
    fn on_select(self) { ... }
    fn a_call(self) -> BasicMenu_Result { ... }
    fn b_call(self) -> BasicMenu_Result { ... }
}

Provided Methods§

Source

fn get_is_active(self) -> bool

get_IsActive() overload

Source

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

set_IsActive(bool) overload

Source

fn get_is_active_select(self) -> bool

get_IsActiveSelect() overload

Source

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

set_IsActiveSelect(bool) overload

Source

fn ctor(self, item: impl Into<ItemData>, unit: impl Into<Unit>)

.ctor(crate::app::itemdata::ItemData, crate::app::unit::Unit) overload

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn get_count_text(self) -> Il2CppString

GetCountText() overload

Source

fn build_attribute(self) -> BasicMenuItem_Attribute

BuildAttribute() overload

Source

fn on_select(self)

OnSelect() overload

Source

fn a_call(self) -> BasicMenu_Result

ACall() overload

Source

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§

Source§

impl<__T: IGiftMenuItemSub> IGiftMenuItemSubMethods for __T

Available on crate feature app-giftmenuitemsub only.