pub trait IFileViewerItem_DirectoryItemMethods: IFileViewerItem_DirectoryItem {
// Provided methods
fn ctor(
self,
path: impl Into<Il2CppString>,
name: impl Into<Il2CppString>,
func: impl Into<Func_3<DebugMenu, Il2CppString, MenuItem_Result>>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn a_call(self) -> MenuItem_Result { ... }
fn get_font_color(self) -> Color { ... }
}Provided Methods§
Sourcefn ctor(
self,
path: impl Into<Il2CppString>,
name: impl Into<Il2CppString>,
func: impl Into<Func_3<DebugMenu, Il2CppString, MenuItem_Result>>,
)
fn ctor( self, path: impl Into<Il2CppString>, name: impl Into<Il2CppString>, func: impl Into<Func_3<DebugMenu, Il2CppString, MenuItem_Result>>, )
.ctor(::unity::Il2CppString, ::unity::Il2CppString, crate::system::func_3::Func_3<crate::app::debugmenu::DebugMenu,::unity::Il2CppString,crate::app::menuitem::MenuItem_Result>) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn a_call(self) -> MenuItem_Result
fn a_call(self) -> MenuItem_Result
ACall() overload
Sourcefn get_font_color(self) -> Color
fn get_font_color(self) -> Color
GetFontColor() 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: IFileViewerItem_DirectoryItem> IFileViewerItem_DirectoryItemMethods for __T
Available on crate feature
app-filevieweritem only.