pub trait IRingListSequenceMethods: IRingListSequence {
Show 15 methods
// Provided methods
fn compare_god_name(
self,
god_name1: impl Into<Il2CppString>,
god_name2: impl Into<Il2CppString>,
) -> bool { ... }
fn load(self) { ... }
fn unload(self) { ... }
fn wait_loading(self) { ... }
fn start(self) { ... }
fn set_page_data(self, page_data: impl Into<RingListSequence_PageData>) { ... }
fn open(self) { ... }
fn wait_opening(self) { ... }
fn tick(self) { ... }
fn close(self) { ... }
fn wait_closing(self) { ... }
fn on_create(self) { ... }
fn on_dispose(self) { ... }
fn get_desc(self) -> Array<ProcDesc> { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn compare_god_name(
self,
god_name1: impl Into<Il2CppString>,
god_name2: impl Into<Il2CppString>,
) -> bool
fn compare_god_name( self, god_name1: impl Into<Il2CppString>, god_name2: impl Into<Il2CppString>, ) -> bool
CompareGodName(::unity::Il2CppString, ::unity::Il2CppString) overload
Sourcefn wait_loading(self)
fn wait_loading(self)
WaitLoading() overload
Sourcefn set_page_data(self, page_data: impl Into<RingListSequence_PageData>)
fn set_page_data(self, page_data: impl Into<RingListSequence_PageData>)
SetPageData(crate::app::ringlistsequence::RingListSequence_PageData) overload
Sourcefn wait_opening(self)
fn wait_opening(self)
WaitOpening() overload
Sourcefn wait_closing(self)
fn wait_closing(self)
WaitClosing() overload
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() 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: IRingListSequence> IRingListSequenceMethods for __T
Available on crate feature
app-ringlistsequence only.