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§
Sourcefn get_name(self) -> Il2CppString
fn get_name(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_hash_code(self) -> i32
fn get_hash_code(self) -> i32
get_hashCode() overload
Sourcefn set_hash_code(self, value: impl Into<i32>)
fn set_hash_code(self, value: impl Into<i32>)
set_hashCode(i32) overload
Sourcefn get_style_opening_definition(self) -> Il2CppString
fn get_style_opening_definition(self) -> Il2CppString
get_styleOpeningDefinition() overload
Sourcefn get_style_closing_definition(self) -> Il2CppString
fn get_style_closing_definition(self) -> Il2CppString
get_styleClosingDefinition() overload
Sourcefn get_style_opening_tag_array(self) -> Array<i32>
fn get_style_opening_tag_array(self) -> Array<i32>
get_styleOpeningTagArray() overload
Sourcefn get_style_closing_tag_array(self) -> Array<i32>
fn get_style_closing_tag_array(self) -> Array<i32>
get_styleClosingTagArray() overload
Sourcefn ctor(
self,
style_name: impl Into<Il2CppString>,
style_opening_definition: impl Into<Il2CppString>,
style_closing_definition: impl Into<Il2CppString>,
)
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
Sourcefn refresh_style(self)
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§
impl<__T: ITMP_Style> ITMP_StyleMethods for __T
Available on crate feature
tm_pro-tmp_style only.