Skip to main content

IMusicDataMethods

Trait IMusicDataMethods 

Source
pub trait IMusicDataMethods: IMusicData {
Show 21 methods // Provided methods fn get_event_name(self) -> Il2CppString { ... } fn set_event_name(self, value: impl Into<Il2CppString>) { ... } fn get_name(self) -> Il2CppString { ... } fn set_name(self, value: impl Into<Il2CppString>) { ... } fn get_help(self) -> Il2CppString { ... } fn set_help(self, value: impl Into<Il2CppString>) { ... } fn get_condition(self) -> Il2CppString { ... } fn set_condition(self, value: impl Into<Il2CppString>) { ... } fn get_amiibo(self) -> Il2CppString { ... } fn set_amiibo(self, value: impl Into<Il2CppString>) { ... } fn get_change_event_name(self) -> Il2CppString { ... } fn set_change_event_name(self, value: impl Into<Il2CppString>) { ... } fn get_is_change(self) -> bool { ... } fn set_is_change(self, value: impl Into<bool>) { ... } fn get_gid(self) -> Il2CppString { ... } fn set_gid(self, value: impl Into<Il2CppString>) { ... } fn get_god_data(self) -> GodData { ... } fn set_god_data(self, value: impl Into<GodData>) { ... } fn on_completed(self) { ... } fn get_debug_name(self) -> Il2CppString { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_event_name(self) -> Il2CppString

get_EventName() overload

Source

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

set_EventName(::unity::Il2CppString) overload

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_help(self) -> Il2CppString

get_Help() overload

Source

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

set_Help(::unity::Il2CppString) overload

Source

fn get_condition(self) -> Il2CppString

get_Condition() overload

Source

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

set_Condition(::unity::Il2CppString) overload

Source

fn get_amiibo(self) -> Il2CppString

get_Amiibo() overload

Source

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

set_Amiibo(::unity::Il2CppString) overload

Source

fn get_change_event_name(self) -> Il2CppString

get_ChangeEventName() overload

Source

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

set_ChangeEventName(::unity::Il2CppString) overload

Source

fn get_is_change(self) -> bool

get_IsChange() overload

Source

fn set_is_change(self, value: impl Into<bool>)

set_IsChange(bool) overload

Source

fn get_gid(self) -> Il2CppString

get_Gid() overload

Source

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

set_Gid(::unity::Il2CppString) overload

Source

fn get_god_data(self) -> GodData

get_GodData() overload

Source

fn set_god_data(self, value: impl Into<GodData>)

set_GodData(crate::app::goddata::GodData) overload

Source

fn on_completed(self)

OnCompleted() overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() overload

Source

fn ctor(self)

.ctor() 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: IMusicData> IMusicDataMethods for __T

Available on crate feature app-musicdata only.