pub trait IDebugPathMenu_SettingMethods: IDebugPathMenu_Setting {
// Provided methods
fn ctor(self) { ... }
fn get_categories(self) -> DebugPathMenu_Categories { ... }
fn set_categories(self, value: impl Into<DebugPathMenu_Categories>) { ... }
fn get_is_directory_only(self) -> bool { ... }
fn set_is_directory_only(self, value: impl Into<bool>) { ... }
fn get_initial_directory_path(self) -> Il2CppString { ... }
fn set_initial_directory_path(self, value: impl Into<Il2CppString>) { ... }
fn get_on_select(self) -> Action_1<Il2CppString> { ... }
fn set_on_select(self, value: impl Into<Action_1<Il2CppString>>) { ... }
fn get_on_cancel(self) -> Action { ... }
fn set_on_cancel(self, value: impl Into<Action>) { ... }
}Provided Methods§
Sourcefn get_categories(self) -> DebugPathMenu_Categories
fn get_categories(self) -> DebugPathMenu_Categories
get_Categories() overload
Sourcefn set_categories(self, value: impl Into<DebugPathMenu_Categories>)
fn set_categories(self, value: impl Into<DebugPathMenu_Categories>)
set_Categories(crate::app::debugpathmenu::DebugPathMenu_Categories) overload
Sourcefn get_is_directory_only(self) -> bool
fn get_is_directory_only(self) -> bool
get_IsDirectoryOnly() overload
Sourcefn set_is_directory_only(self, value: impl Into<bool>)
fn set_is_directory_only(self, value: impl Into<bool>)
set_IsDirectoryOnly(bool) overload
Sourcefn get_initial_directory_path(self) -> Il2CppString
fn get_initial_directory_path(self) -> Il2CppString
get_InitialDirectoryPath() overload
Sourcefn set_initial_directory_path(self, value: impl Into<Il2CppString>)
fn set_initial_directory_path(self, value: impl Into<Il2CppString>)
set_InitialDirectoryPath(::unity::Il2CppString) overload
Sourcefn get_on_select(self) -> Action_1<Il2CppString>
fn get_on_select(self) -> Action_1<Il2CppString>
get_OnSelect() overload
Sourcefn set_on_select(self, value: impl Into<Action_1<Il2CppString>>)
fn set_on_select(self, value: impl Into<Action_1<Il2CppString>>)
set_OnSelect(crate::system::action_1::Action_1<::unity::Il2CppString>) overload
Sourcefn get_on_cancel(self) -> Action
fn get_on_cancel(self) -> Action
get_OnCancel() overload
Sourcefn set_on_cancel(self, value: impl Into<Action>)
fn set_on_cancel(self, value: impl Into<Action>)
set_OnCancel(crate::system::action::Action) 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_Setting> IDebugPathMenu_SettingMethods for __T
Available on crate feature
app-debugpathmenu only.