pub trait IDebugCommandlineRom_OptionsMethods: IDebugCommandlineRom_Options {
// Provided methods
fn get_save_data_root_path(self) -> Il2CppString { ... }
fn set_save_data_root_path(self, value: impl Into<Il2CppString>) { ... }
fn get_relay_data_root_path(self) -> Il2CppString { ... }
fn set_relay_data_root_path(self, value: impl Into<Il2CppString>) { ... }
fn get_versus_data_root_path(self) -> Il2CppString { ... }
fn set_versus_data_root_path(self, value: impl Into<Il2CppString>) { ... }
fn get_is_auto_play(self) -> bool { ... }
fn set_is_auto_play(self, value: impl Into<bool>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_save_data_root_path(self) -> Il2CppString
fn get_save_data_root_path(self) -> Il2CppString
get_SaveDataRootPath() overload
Sourcefn set_save_data_root_path(self, value: impl Into<Il2CppString>)
fn set_save_data_root_path(self, value: impl Into<Il2CppString>)
set_SaveDataRootPath(::unity::Il2CppString) overload
Sourcefn get_relay_data_root_path(self) -> Il2CppString
fn get_relay_data_root_path(self) -> Il2CppString
get_RelayDataRootPath() overload
Sourcefn set_relay_data_root_path(self, value: impl Into<Il2CppString>)
fn set_relay_data_root_path(self, value: impl Into<Il2CppString>)
set_RelayDataRootPath(::unity::Il2CppString) overload
Sourcefn get_versus_data_root_path(self) -> Il2CppString
fn get_versus_data_root_path(self) -> Il2CppString
get_VersusDataRootPath() overload
Sourcefn set_versus_data_root_path(self, value: impl Into<Il2CppString>)
fn set_versus_data_root_path(self, value: impl Into<Il2CppString>)
set_VersusDataRootPath(::unity::Il2CppString) overload
Sourcefn get_is_auto_play(self) -> bool
fn get_is_auto_play(self) -> bool
get_IsAutoPlay() overload
Sourcefn set_is_auto_play(self, value: impl Into<bool>)
fn set_is_auto_play(self, value: impl Into<bool>)
set_IsAutoPlay(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: IDebugCommandlineRom_Options> IDebugCommandlineRom_OptionsMethods for __T
Available on crate feature
app-debugcommandlinerom only.