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§
Sourcefn postlogin(
self,
label_when_cancelled: impl Into<i32>,
label_when_failed: impl Into<i32>,
)
fn postlogin( self, label_when_cancelled: impl Into<i32>, label_when_failed: impl Into<i32>, )
Postlogin(i32, i32) overload
Sourcefn show_error(self)
fn show_error(self)
ShowError() overload
Sourcefn set_meta_binary(
self,
param_meta_bytes: impl Into<List_1<u8>>,
meta_data: impl Into<VersusServerRankedMetaData>,
)
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
Sourcefn set_result(
self,
result: impl Into<NexVersus_Results>,
message: impl Into<Il2CppString>,
)
fn set_result( self, result: impl Into<NexVersus_Results>, message: impl Into<Il2CppString>, )
SetResult(crate::app::nexversus::NexVersus_Results, ::unity::Il2CppString) overload
Sourcefn set_result_error(
self,
error: impl Into<NetError_App>,
message: impl Into<Il2CppString>,
)
fn set_result_error( self, error: impl Into<NetError_App>, message: impl Into<Il2CppString>, )
SetResultError(crate::app::neterror::NetError_App, ::unity::Il2CppString) overload
Sourcefn set_result_failed(self, message: impl Into<Il2CppString>)
fn set_result_failed(self, message: impl Into<Il2CppString>)
SetResultFailed(::unity::Il2CppString) overload
Sourcefn set_result_not_found(self)
fn set_result_not_found(self)
SetResultNotFound() overload
Sourcefn set_result_different_type(self, message: impl Into<Il2CppString>)
fn set_result_different_type(self, message: impl Into<Il2CppString>)
SetResultDifferentType(::unity::Il2CppString) 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: INexVersus_NexSequenceBase> INexVersus_NexSequenceBaseMethods for __T
Available on crate feature
app-nexversus only.