Skip to main content

INexVersus_NexSequenceBaseMethods

Trait INexVersus_NexSequenceBaseMethods 

Source
pub trait INexVersus_NexSequenceBaseMethods: INexVersus_NexSequenceBase {
    // Provided methods
    fn login(self) { ... }
    fn postlogin(
        self,
        label_when_cancelled: impl Into<i32>,
        label_when_failed: impl Into<i32>,
    ) { ... }
    fn show_error(self) { ... }
    fn set_meta_binary(
        self,
        param_meta_bytes: impl Into<List_1<u8>>,
        meta_data: impl Into<VersusServerRankedMetaData>,
    ) { ... }
    fn set_result(
        self,
        result: impl Into<NexVersus_Results>,
        message: impl Into<Il2CppString>,
    ) { ... }
    fn set_result_error(
        self,
        error: impl Into<NetError_App>,
        message: impl Into<Il2CppString>,
    ) { ... }
    fn set_result_failed(self, message: impl Into<Il2CppString>) { ... }
    fn set_result_not_found(self) { ... }
    fn set_result_different_type(self, message: impl Into<Il2CppString>) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn login(self)

Login() overload

Source

fn postlogin( self, label_when_cancelled: impl Into<i32>, label_when_failed: impl Into<i32>, )

Postlogin(i32, i32) overload

Source

fn show_error(self)

ShowError() overload

Source

fn set_meta_binary( self, param_meta_bytes: impl Into<List_1<u8>>, meta_data: impl Into<VersusServerRankedMetaData>, )

SetMetaBinary(crate::system::collections::generic::list_1::List_1<u8>, crate::app::versusserverrankedmetadata::VersusServerRankedMetaData) overload

Source

fn set_result( self, result: impl Into<NexVersus_Results>, message: impl Into<Il2CppString>, )

SetResult(crate::app::nexversus::NexVersus_Results, ::unity::Il2CppString) overload

Source

fn set_result_error( self, error: impl Into<NetError_App>, message: impl Into<Il2CppString>, )

SetResultError(crate::app::neterror::NetError_App, ::unity::Il2CppString) overload

Source

fn set_result_failed(self, message: impl Into<Il2CppString>)

SetResultFailed(::unity::Il2CppString) overload

Source

fn set_result_not_found(self)

SetResultNotFound() overload

Source

fn set_result_different_type(self, message: impl Into<Il2CppString>)

SetResultDifferentType(::unity::Il2CppString) 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: INexVersus_NexSequenceBase> INexVersus_NexSequenceBaseMethods for __T

Available on crate feature app-nexversus only.