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