Skip to main content

IDebugUnitItemMenu_EditItemMenuItemMethods

Trait IDebugUnitItemMenu_EditItemMenuItemMethods 

Source
pub trait IDebugUnitItemMenu_EditItemMenuItemMethods: IDebugUnitItemMenu_EditItemMenuItem {
Show 14 methods // Provided methods fn ctor(self, unit: impl Into<Unit>, unit_item_index: impl Into<i32>) { ... } fn get_column_count(self) -> i32 { ... } fn get_column_width0(self) -> f32 { ... } fn get_column_width1(self) -> f32 { ... } fn get_font_color(self) -> Color { ... } fn get_column_name0(self) -> Il2CppString { ... } fn get_column_name1(self) -> Il2CppString { ... } fn is_enable(self) -> bool { ... } fn a_call(self) -> MenuItem_Result { ... } fn x_call(self) -> MenuItem_Result { ... } fn on_tick(self) { ... } fn get_help(self) -> Il2CppString { ... } fn get_prev_index( self, index: impl Into<i32>, is_trigger: impl Into<bool>, ) -> i32 { ... } fn get_next_index( self, index: impl Into<i32>, is_trigger: impl Into<bool>, ) -> i32 { ... }
}

Provided Methods§

Source

fn ctor(self, unit: impl Into<Unit>, unit_item_index: impl Into<i32>)

.ctor(crate::app::unit::Unit, i32) overload

Source

fn get_column_count(self) -> i32

GetColumnCount() overload

Source

fn get_column_width0(self) -> f32

GetColumnWidth0() overload

Source

fn get_column_width1(self) -> f32

GetColumnWidth1() overload

Source

fn get_font_color(self) -> Color

GetFontColor() overload

Source

fn get_column_name0(self) -> Il2CppString

GetColumnName0() overload

Source

fn get_column_name1(self) -> Il2CppString

GetColumnName1() overload

Source

fn is_enable(self) -> bool

IsEnable() overload

Source

fn a_call(self) -> MenuItem_Result

ACall() overload

Source

fn x_call(self) -> MenuItem_Result

XCall() overload

Source

fn on_tick(self)

OnTick() overload

Source

fn get_help(self) -> Il2CppString

GetHelp() overload

Source

fn get_prev_index( self, index: impl Into<i32>, is_trigger: impl Into<bool>, ) -> i32

GetPrevIndex(i32, bool) overload

Source

fn get_next_index( self, index: impl Into<i32>, is_trigger: impl Into<bool>, ) -> i32

GetNextIndex(i32, bool) 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: IDebugUnitItemMenu_EditItemMenuItem> IDebugUnitItemMenu_EditItemMenuItemMethods for __T

Available on crate feature app-debugunititemmenu only.