pub trait IRubyTagInfoMethods: IRubyTagInfo {
// Provided methods
fn get_tag(self) -> u16 { ... }
fn get_tag_group(self) -> u16 { ... }
fn get_parent_length(self) -> u16 { ... }
fn set_parent_length(self, value: impl Into<u16>) { ... }
fn get_ruby(self) -> Il2CppString { ... }
fn set_ruby(self, value: impl Into<Il2CppString>) { ... }
fn ctor(self, param: impl Into<Array<u8>>) { ... }
}Provided Methods§
Sourcefn get_tag_group(self) -> u16
fn get_tag_group(self) -> u16
get_TagGroup() overload
Sourcefn get_parent_length(self) -> u16
fn get_parent_length(self) -> u16
get_ParentLength() overload
Sourcefn set_parent_length(self, value: impl Into<u16>)
fn set_parent_length(self, value: impl Into<u16>)
set_ParentLength(u16) overload
Sourcefn get_ruby(self) -> Il2CppString
fn get_ruby(self) -> Il2CppString
get_Ruby() overload
Sourcefn set_ruby(self, value: impl Into<Il2CppString>)
fn set_ruby(self, value: impl Into<Il2CppString>)
set_Ruby(::unity::Il2CppString) 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: IRubyTagInfo> IRubyTagInfoMethods for __T
Available on crate feature
nintendo-message_studio-lib-rubytaginfo only.