pub trait IDebugPathMenu_EntryMenuItemMethods: IDebugPathMenu_EntryMenuItem {
// Provided methods
fn ctor(
self,
setting: impl Into<DebugPathMenu_Setting>,
current_path: impl Into<Il2CppString>,
entry_data: impl Into<DebugPathMenu_EntryData>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn get_help(self) -> Il2CppString { ... }
fn get_column_width0(self) -> f32 { ... }
fn a_call(self) -> MenuItem_Result { ... }
fn x_call(self) -> MenuItem_Result { ... }
fn b_call(self) -> MenuItem_Result { ... }
fn decide(self) -> MenuItem_Result { ... }
fn move_to_parent(self) -> MenuItem_Result { ... }
fn move_to_sub(self) -> MenuItem_Result { ... }
fn cancel(self) -> MenuItem_Result { ... }
}Provided Methods§
Sourcefn ctor(
self,
setting: impl Into<DebugPathMenu_Setting>,
current_path: impl Into<Il2CppString>,
entry_data: impl Into<DebugPathMenu_EntryData>,
)
fn ctor( self, setting: impl Into<DebugPathMenu_Setting>, current_path: impl Into<Il2CppString>, entry_data: impl Into<DebugPathMenu_EntryData>, )
.ctor(crate::app::debugpathmenu::DebugPathMenu_Setting, ::unity::Il2CppString, crate::app::debugpathmenu::DebugPathMenu_EntryData) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn get_help(self) -> Il2CppString
fn get_help(self) -> Il2CppString
GetHelp() overload
Sourcefn get_column_width0(self) -> f32
fn get_column_width0(self) -> f32
GetColumnWidth0() 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 b_call(self) -> MenuItem_Result
fn b_call(self) -> MenuItem_Result
BCall() overload
Sourcefn decide(self) -> MenuItem_Result
fn decide(self) -> MenuItem_Result
Decide() overload
Sourcefn move_to_parent(self) -> MenuItem_Result
fn move_to_parent(self) -> MenuItem_Result
MoveToParent() overload
Sourcefn move_to_sub(self) -> MenuItem_Result
fn move_to_sub(self) -> MenuItem_Result
MoveToSub() overload
Sourcefn cancel(self) -> MenuItem_Result
fn cancel(self) -> MenuItem_Result
Cancel() 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: IDebugPathMenu_EntryMenuItem> IDebugPathMenu_EntryMenuItemMethods for __T
Available on crate feature
app-debugpathmenu only.