Skip to main content

IDebugPathMenu_SettingMethods

Trait IDebugPathMenu_SettingMethods 

Source
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§

Source

fn ctor(self)

.ctor() overload

Source

fn get_categories(self) -> DebugPathMenu_Categories

get_Categories() overload

Source

fn set_categories(self, value: impl Into<DebugPathMenu_Categories>)

set_Categories(crate::app::debugpathmenu::DebugPathMenu_Categories) overload

Source

fn get_is_directory_only(self) -> bool

get_IsDirectoryOnly() overload

Source

fn set_is_directory_only(self, value: impl Into<bool>)

set_IsDirectoryOnly(bool) overload

Source

fn get_initial_directory_path(self) -> Il2CppString

get_InitialDirectoryPath() overload

Source

fn set_initial_directory_path(self, value: impl Into<Il2CppString>)

set_InitialDirectoryPath(::unity::Il2CppString) overload

Source

fn get_on_select(self) -> Action_1<Il2CppString>

get_OnSelect() overload

Source

fn set_on_select(self, value: impl Into<Action_1<Il2CppString>>)

set_OnSelect(crate::system::action_1::Action_1<::unity::Il2CppString>) overload

Source

fn get_on_cancel(self) -> Action

get_OnCancel() overload

Source

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§

Source§

impl<__T: IDebugPathMenu_Setting> IDebugPathMenu_SettingMethods for __T

Available on crate feature app-debugpathmenu only.