Skip to main content

IRingMenuItemMethods

Trait IRingMenuItemMethods 

Source
pub trait IRingMenuItemMethods: IRingMenuItem {
Show 23 methods // Provided methods fn get_m_ring_data(self) -> RingData { ... } fn set_m_ring_data(self, value: impl Into<RingData>) { ... } fn get_m_is_equipped(self) -> bool { ... } fn set_m_is_equipped(self, value: impl Into<bool>) { ... } fn get_m_count(self) -> i32 { ... } fn set_m_count(self, value: impl Into<i32>) { ... } fn get_m_needed_count_to_next(self) -> i32 { ... } fn set_m_needed_count_to_next(self, value: impl Into<i32>) { ... } fn get_m_needed_piece_of_bonds_to_next(self) -> i32 { ... } fn set_m_needed_piece_of_bonds_to_next(self, value: impl Into<i32>) { ... } fn get_m_is_enough_count(self) -> bool { ... } fn set_m_is_enough_count(self, value: impl Into<bool>) { ... } fn get_m_is_enough_piece_of_bond(self) -> bool { ... } fn set_m_is_enough_piece_of_bond(self, value: impl Into<bool>) { ... } fn is_empty(self) -> bool { ... } fn ctor( self, ring_data: impl Into<RingData>, is_equipped: impl Into<bool>, count: impl Into<i32>, select_event_handler: impl Into<RingMenuItem_SelectEventHandler>, decide_event_handler: impl Into<RingMenuItem_DecideEventHandler>, ) { ... } fn get_name(self) -> Il2CppString { ... } fn build_attribute(self) -> BasicMenuItem_Attribute { ... } fn on_build(self) { ... } fn on_build_menu_item_content(self) { ... } fn set_initial_color(self) { ... } fn on_select(self) { ... } fn a_call(self) -> BasicMenu_Result { ... }
}

Provided Methods§

Source

fn get_m_ring_data(self) -> RingData

get_m_RingData() overload

Source

fn set_m_ring_data(self, value: impl Into<RingData>)

set_m_RingData(crate::app::ringdata::RingData) overload

Source

fn get_m_is_equipped(self) -> bool

get_m_IsEquipped() overload

Source

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

set_m_IsEquipped(bool) overload

Source

fn get_m_count(self) -> i32

get_m_Count() overload

Source

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

set_m_Count(i32) overload

Source

fn get_m_needed_count_to_next(self) -> i32

get_m_NeededCountToNext() overload

Source

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

set_m_NeededCountToNext(i32) overload

Source

fn get_m_needed_piece_of_bonds_to_next(self) -> i32

get_m_NeededPieceOfBondsToNext() overload

Source

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

set_m_NeededPieceOfBondsToNext(i32) overload

Source

fn get_m_is_enough_count(self) -> bool

get_m_IsEnoughCount() overload

Source

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

set_m_IsEnoughCount(bool) overload

Source

fn get_m_is_enough_piece_of_bond(self) -> bool

get_m_IsEnoughPieceOfBond() overload

Source

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

set_m_IsEnoughPieceOfBond(bool) overload

Source

fn is_empty(self) -> bool

IsEmpty() overload

Source

fn ctor( self, ring_data: impl Into<RingData>, is_equipped: impl Into<bool>, count: impl Into<i32>, select_event_handler: impl Into<RingMenuItem_SelectEventHandler>, decide_event_handler: impl Into<RingMenuItem_DecideEventHandler>, )

.ctor(crate::app::ringdata::RingData, bool, i32, crate::app::ringmenuitem::RingMenuItem_SelectEventHandler, crate::app::ringmenuitem::RingMenuItem_DecideEventHandler) overload

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn build_attribute(self) -> BasicMenuItem_Attribute

BuildAttribute() overload

Source

fn on_build(self)

OnBuild() overload

Source

fn on_build_menu_item_content(self)

OnBuildMenuItemContent() overload

Source

fn set_initial_color(self)

SetInitialColor() overload

Source

fn on_select(self)

OnSelect() overload

Source

fn a_call(self) -> BasicMenu_Result

ACall() 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: IRingMenuItem> IRingMenuItemMethods for __T

Available on crate feature app-ringmenuitem only.