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§
Sourcefn get_event_name(self) -> Il2CppString
fn get_event_name(self) -> Il2CppString
get_EventName() overload
Sourcefn set_event_name(self, value: impl Into<Il2CppString>)
fn set_event_name(self, value: impl Into<Il2CppString>)
set_EventName(::unity::Il2CppString) overload
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_help(self) -> Il2CppString
fn get_help(self) -> Il2CppString
get_Help() overload
Sourcefn set_help(self, value: impl Into<Il2CppString>)
fn set_help(self, value: impl Into<Il2CppString>)
set_Help(::unity::Il2CppString) overload
Sourcefn get_condition(self) -> Il2CppString
fn get_condition(self) -> Il2CppString
get_Condition() overload
Sourcefn set_condition(self, value: impl Into<Il2CppString>)
fn set_condition(self, value: impl Into<Il2CppString>)
set_Condition(::unity::Il2CppString) overload
Sourcefn get_amiibo(self) -> Il2CppString
fn get_amiibo(self) -> Il2CppString
get_Amiibo() overload
Sourcefn set_amiibo(self, value: impl Into<Il2CppString>)
fn set_amiibo(self, value: impl Into<Il2CppString>)
set_Amiibo(::unity::Il2CppString) overload
Sourcefn get_change_event_name(self) -> Il2CppString
fn get_change_event_name(self) -> Il2CppString
get_ChangeEventName() overload
Sourcefn set_change_event_name(self, value: impl Into<Il2CppString>)
fn set_change_event_name(self, value: impl Into<Il2CppString>)
set_ChangeEventName(::unity::Il2CppString) overload
Sourcefn get_is_change(self) -> bool
fn get_is_change(self) -> bool
get_IsChange() overload
Sourcefn set_is_change(self, value: impl Into<bool>)
fn set_is_change(self, value: impl Into<bool>)
set_IsChange(bool) overload
Sourcefn get_gid(self) -> Il2CppString
fn get_gid(self) -> Il2CppString
get_Gid() overload
Sourcefn set_gid(self, value: impl Into<Il2CppString>)
fn set_gid(self, value: impl Into<Il2CppString>)
set_Gid(::unity::Il2CppString) overload
Sourcefn get_god_data(self) -> GodData
fn get_god_data(self) -> GodData
get_GodData() overload
Sourcefn set_god_data(self, value: impl Into<GodData>)
fn set_god_data(self, value: impl Into<GodData>)
set_GodData(crate::app::goddata::GodData) overload
Sourcefn on_completed(self)
fn on_completed(self)
OnCompleted() overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() 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: IMusicData> IMusicDataMethods for __T
app-musicdata only.