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§
Sourcefn get_m_ring_data(self) -> RingData
fn get_m_ring_data(self) -> RingData
get_m_RingData() overload
Sourcefn set_m_ring_data(self, value: impl Into<RingData>)
fn set_m_ring_data(self, value: impl Into<RingData>)
set_m_RingData(crate::app::ringdata::RingData) overload
Sourcefn get_m_is_equipped(self) -> bool
fn get_m_is_equipped(self) -> bool
get_m_IsEquipped() overload
Sourcefn set_m_is_equipped(self, value: impl Into<bool>)
fn set_m_is_equipped(self, value: impl Into<bool>)
set_m_IsEquipped(bool) overload
Sourcefn get_m_count(self) -> i32
fn get_m_count(self) -> i32
get_m_Count() overload
Sourcefn set_m_count(self, value: impl Into<i32>)
fn set_m_count(self, value: impl Into<i32>)
set_m_Count(i32) overload
Sourcefn get_m_needed_count_to_next(self) -> i32
fn get_m_needed_count_to_next(self) -> i32
get_m_NeededCountToNext() overload
Sourcefn set_m_needed_count_to_next(self, value: impl Into<i32>)
fn set_m_needed_count_to_next(self, value: impl Into<i32>)
set_m_NeededCountToNext(i32) overload
Sourcefn get_m_needed_piece_of_bonds_to_next(self) -> i32
fn get_m_needed_piece_of_bonds_to_next(self) -> i32
get_m_NeededPieceOfBondsToNext() overload
Sourcefn set_m_needed_piece_of_bonds_to_next(self, value: impl Into<i32>)
fn set_m_needed_piece_of_bonds_to_next(self, value: impl Into<i32>)
set_m_NeededPieceOfBondsToNext(i32) overload
Sourcefn get_m_is_enough_count(self) -> bool
fn get_m_is_enough_count(self) -> bool
get_m_IsEnoughCount() overload
Sourcefn set_m_is_enough_count(self, value: impl Into<bool>)
fn set_m_is_enough_count(self, value: impl Into<bool>)
set_m_IsEnoughCount(bool) overload
Sourcefn get_m_is_enough_piece_of_bond(self) -> bool
fn get_m_is_enough_piece_of_bond(self) -> bool
get_m_IsEnoughPieceOfBond() overload
Sourcefn set_m_is_enough_piece_of_bond(self, value: impl Into<bool>)
fn set_m_is_enough_piece_of_bond(self, value: impl Into<bool>)
set_m_IsEnoughPieceOfBond(bool) overload
Sourcefn 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 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
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn build_attribute(self) -> BasicMenuItem_Attribute
fn build_attribute(self) -> BasicMenuItem_Attribute
BuildAttribute() overload
OnBuildMenuItemContent() overload
Sourcefn set_initial_color(self)
fn set_initial_color(self)
SetInitialColor() overload
Sourcefn a_call(self) -> BasicMenu_Result
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§
impl<__T: IRingMenuItem> IRingMenuItemMethods for __T
app-ringmenuitem only.