pub trait ICustomTagInfoMethods: ICustomTagInfo {
// Provided methods
fn get_tag(self) -> u16 { ... }
fn set_tag(self, value: impl Into<u16>) { ... }
fn get_tag_group(self) -> u16 { ... }
fn set_tag_group(self, value: impl Into<u16>) { ... }
fn get_params(self) -> Array<u8> { ... }
fn set_params(self, value: impl Into<Array<u8>>) { ... }
fn ctor(
self,
group: impl Into<u16>,
tag: impl Into<u16>,
param: impl Into<Array<u8>>,
) { ... }
}Provided Methods§
Sourcefn get_tag_group(self) -> u16
fn get_tag_group(self) -> u16
get_TagGroup() overload
Sourcefn set_tag_group(self, value: impl Into<u16>)
fn set_tag_group(self, value: impl Into<u16>)
set_TagGroup(u16) overload
Sourcefn get_params(self) -> Array<u8>
fn get_params(self) -> Array<u8>
get_Params() overload
Sourcefn set_params(self, value: impl Into<Array<u8>>)
fn set_params(self, value: impl Into<Array<u8>>)
set_Params(::unity::Array<u8>) 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: ICustomTagInfo> ICustomTagInfoMethods for __T
Available on crate feature
nintendo-message_studio-lib-customtaginfo only.