pub trait ICommonRelianceTalkSequenceMethods: ICommonRelianceTalkSequence {
// Provided methods
fn create_descs(self) -> Array<ProcDesc> { ... }
fn ctor(self) { ... }
fn on_dispose(self) { ... }
fn setup(self) { ... }
fn start(self) { ... }
fn cleanup(self) { ... }
fn create_mess_file_name(self, is_reverse: impl Into<bool>) -> Il2CppString { ... }
fn create_mid(self) -> Il2CppString { ... }
fn level_up(self) { ... }
fn get_mess_file_name(self) -> Il2CppString { ... }
fn get_is_loaded_mess_file(self) -> bool { ... }
}Provided Methods§
Sourcefn create_descs(self) -> Array<ProcDesc>
fn create_descs(self) -> Array<ProcDesc>
CreateDescs() overload
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() overload
Sourcefn create_mess_file_name(self, is_reverse: impl Into<bool>) -> Il2CppString
fn create_mess_file_name(self, is_reverse: impl Into<bool>) -> Il2CppString
CreateMessFileName(bool) overload
Sourcefn create_mid(self) -> Il2CppString
fn create_mid(self) -> Il2CppString
CreateMid() overload
Sourcefn get_mess_file_name(self) -> Il2CppString
fn get_mess_file_name(self) -> Il2CppString
get_MessFileName() overload
Sourcefn get_is_loaded_mess_file(self) -> bool
fn get_is_loaded_mess_file(self) -> bool
get_IsLoadedMessFile() 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: ICommonRelianceTalkSequence> ICommonRelianceTalkSequenceMethods for __T
Available on crate feature
app-commonreliancetalksequence only.