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§
Sourcefn ctor(self, unit: impl Into<Unit>, unit_item_index: impl Into<i32>)
fn ctor(self, unit: impl Into<Unit>, unit_item_index: impl Into<i32>)
.ctor(crate::app::unit::Unit, i32) overload
Sourcefn get_column_count(self) -> i32
fn get_column_count(self) -> i32
GetColumnCount() overload
Sourcefn get_column_width0(self) -> f32
fn get_column_width0(self) -> f32
GetColumnWidth0() overload
Sourcefn get_column_width1(self) -> f32
fn get_column_width1(self) -> f32
GetColumnWidth1() overload
Sourcefn get_font_color(self) -> Color
fn get_font_color(self) -> Color
GetFontColor() overload
Sourcefn get_column_name0(self) -> Il2CppString
fn get_column_name0(self) -> Il2CppString
GetColumnName0() overload
Sourcefn get_column_name1(self) -> Il2CppString
fn get_column_name1(self) -> Il2CppString
GetColumnName1() overload
Sourcefn a_call(self) -> MenuItem_Result
fn a_call(self) -> MenuItem_Result
ACall() overload
Sourcefn x_call(self) -> MenuItem_Result
fn x_call(self) -> MenuItem_Result
XCall() overload
Sourcefn get_help(self) -> Il2CppString
fn get_help(self) -> Il2CppString
GetHelp() overload
Sourcefn get_prev_index(
self,
index: impl Into<i32>,
is_trigger: impl Into<bool>,
) -> i32
fn get_prev_index( self, index: impl Into<i32>, is_trigger: impl Into<bool>, ) -> i32
GetPrevIndex(i32, bool) overload
Sourcefn get_next_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
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§
impl<__T: IDebugUnitItemMenu_EditItemMenuItem> IDebugUnitItemMenu_EditItemMenuItemMethods for __T
Available on crate feature
app-debugunititemmenu only.