pub trait IRankingMethods: IRanking {
// Provided methods
fn on_create(self) { ... }
fn on_dispose(self) { ... }
fn download(self, super_: impl Into<ProcInst>, cid: impl Into<Il2CppString>) { ... }
fn upload(
self,
super_: impl Into<ProcInst>,
cid: impl Into<Il2CppString>,
pairs: impl Into<Array<NexRanking_Data>>,
) { ... }
fn get_ranking_data(self) -> Array<NexRanking_Data> { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() overload
Sourcefn download(self, super_: impl Into<ProcInst>, cid: impl Into<Il2CppString>)
fn download(self, super_: impl Into<ProcInst>, cid: impl Into<Il2CppString>)
Download(crate::app::procinst::ProcInst, ::unity::Il2CppString) overload
Sourcefn upload(
self,
super_: impl Into<ProcInst>,
cid: impl Into<Il2CppString>,
pairs: impl Into<Array<NexRanking_Data>>,
)
fn upload( self, super_: impl Into<ProcInst>, cid: impl Into<Il2CppString>, pairs: impl Into<Array<NexRanking_Data>>, )
Upload(crate::app::procinst::ProcInst, ::unity::Il2CppString, ::unity::Array<crate::app::nexranking::NexRanking_Data>) overload
Sourcefn get_ranking_data(self) -> Array<NexRanking_Data>
fn get_ranking_data(self) -> Array<NexRanking_Data>
GetRankingData() 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: IRanking> IRankingMethods for __T
Available on crate feature
app-ranking only.