Skip to main content

ITMP_StyleMethods

Trait ITMP_StyleMethods 

Source
pub trait ITMP_StyleMethods: ITMP_Style {
    // Provided methods
    fn get_name(self) -> Il2CppString { ... }
    fn set_name(self, value: impl Into<Il2CppString>) { ... }
    fn get_hash_code(self) -> i32 { ... }
    fn set_hash_code(self, value: impl Into<i32>) { ... }
    fn get_style_opening_definition(self) -> Il2CppString { ... }
    fn get_style_closing_definition(self) -> Il2CppString { ... }
    fn get_style_opening_tag_array(self) -> Array<i32> { ... }
    fn get_style_closing_tag_array(self) -> Array<i32> { ... }
    fn ctor(
        self,
        style_name: impl Into<Il2CppString>,
        style_opening_definition: impl Into<Il2CppString>,
        style_closing_definition: impl Into<Il2CppString>,
    ) { ... }
    fn refresh_style(self) { ... }
}

Provided Methods§

Source

fn get_name(self) -> Il2CppString

get_name() overload

Source

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

set_name(::unity::Il2CppString) overload

Source

fn get_hash_code(self) -> i32

get_hashCode() overload

Source

fn set_hash_code(self, value: impl Into<i32>)

set_hashCode(i32) overload

Source

fn get_style_opening_definition(self) -> Il2CppString

get_styleOpeningDefinition() overload

Source

fn get_style_closing_definition(self) -> Il2CppString

get_styleClosingDefinition() overload

Source

fn get_style_opening_tag_array(self) -> Array<i32>

get_styleOpeningTagArray() overload

Source

fn get_style_closing_tag_array(self) -> Array<i32>

get_styleClosingTagArray() overload

Source

fn ctor( self, style_name: impl Into<Il2CppString>, style_opening_definition: impl Into<Il2CppString>, style_closing_definition: impl Into<Il2CppString>, )

.ctor(::unity::Il2CppString, ::unity::Il2CppString, ::unity::Il2CppString) overload

Source

fn refresh_style(self)

RefreshStyle() 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: ITMP_Style> ITMP_StyleMethods for __T

Available on crate feature tm_pro-tmp_style only.