Skip to main content

ICustomTagInfoMethods

Trait ICustomTagInfoMethods 

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

Source

fn get_tag(self) -> u16

get_Tag() overload

Source

fn set_tag(self, value: impl Into<u16>)

set_Tag(u16) overload

Source

fn get_tag_group(self) -> u16

get_TagGroup() overload

Source

fn set_tag_group(self, value: impl Into<u16>)

set_TagGroup(u16) overload

Source

fn get_params(self) -> Array<u8>

get_Params() overload

Source

fn set_params(self, value: impl Into<Array<u8>>)

set_Params(::unity::Array<u8>) overload

Source

fn ctor( self, group: impl Into<u16>, tag: impl Into<u16>, param: impl Into<Array<u8>>, )

.ctor(u16, u16, ::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§

Source§

impl<__T: ICustomTagInfo> ICustomTagInfoMethods for __T

Available on crate feature nintendo-message_studio-lib-customtaginfo only.