Skip to main content

IBattleStyleMethods

Trait IBattleStyleMethods 

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

Source

fn get_style_2(self) -> Il2CppString

get_Style() overload

Source

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

set_Style(::unity::Il2CppString) overload

Source

fn get_name_2(self) -> Il2CppString

get_Name() overload

Source

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

set_Name(::unity::Il2CppString) overload

Source

fn get_help_2(self) -> Il2CppString

get_Help() overload

Source

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

set_Help(::unity::Il2CppString) overload

Source

fn get_skills_2(self) -> Array<Il2CppString>

get_Skills() overload

Source

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

set_Skills(::unity::Array<::unity::Il2CppString>) overload

Source

fn on_build(self)

OnBuild() overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() overload

Source

fn ctor(self)

.ctor() 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: IBattleStyle> IBattleStyleMethods for __T

Available on crate feature app-battlestyle only.