pub trait IBattleStyleMethods: IBattleStyle {
// Provided methods
fn get_style_2(self) -> Il2CppString { ... }
fn set_style(self, value: impl Into<Il2CppString>) { ... }
fn get_name_2(self) -> Il2CppString { ... }
fn set_name(self, value: impl Into<Il2CppString>) { ... }
fn get_help_2(self) -> Il2CppString { ... }
fn set_help(self, value: impl Into<Il2CppString>) { ... }
fn get_skills_2(self) -> Array<Il2CppString> { ... }
fn set_skills(self, value: impl Into<Array<Il2CppString>>) { ... }
fn on_build(self) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_style_2(self) -> Il2CppString
fn get_style_2(self) -> Il2CppString
get_Style() overload
Sourcefn set_style(self, value: impl Into<Il2CppString>)
fn set_style(self, value: impl Into<Il2CppString>)
set_Style(::unity::Il2CppString) overload
Sourcefn get_name_2(self) -> Il2CppString
fn get_name_2(self) -> Il2CppString
get_Name() overload
Sourcefn set_name(self, value: impl Into<Il2CppString>)
fn set_name(self, value: impl Into<Il2CppString>)
set_Name(::unity::Il2CppString) overload
Sourcefn get_help_2(self) -> Il2CppString
fn get_help_2(self) -> Il2CppString
get_Help() overload
Sourcefn set_help(self, value: impl Into<Il2CppString>)
fn set_help(self, value: impl Into<Il2CppString>)
set_Help(::unity::Il2CppString) overload
Sourcefn get_skills_2(self) -> Array<Il2CppString>
fn get_skills_2(self) -> Array<Il2CppString>
get_Skills() overload
Sourcefn set_skills(self, value: impl Into<Array<Il2CppString>>)
fn set_skills(self, value: impl Into<Array<Il2CppString>>)
set_Skills(::unity::Array<::unity::Il2CppString>) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() 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: IBattleStyle> IBattleStyleMethods for __T
Available on crate feature
app-battlestyle only.