Skip to main content

INexRankingMethods

Trait INexRankingMethods 

Source
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§

Source

fn on_create(self)

OnCreate() overload

Source

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

Source

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

Source

fn clear_succeeded(self)

ClearSucceeded() overload

Source

fn get_is_succeeded(self) -> bool

get_IsSucceeded() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: INexRanking> INexRankingMethods for __T

Available on crate feature app-nexranking only.