pub trait INexLoginSequenceMethods: INexLoginSequence {
// Provided methods
fn ctor(self, is_show_error: impl Into<bool>) { ... }
fn on_create(self) { ... }
fn wait_auto_logout(self) { ... }
fn initialize_nex(self) { ... }
fn setup_network_service_account(self) { ... }
fn login_game_server(self) { ... }
fn get_integer_settings(self) { ... }
fn result_succeeded(self) { ... }
fn result_cancelled(self) { ... }
fn result_failed(self) { ... }
fn show_error(self) { ... }
fn cleanup(self) { ... }
}Provided Methods§
Sourcefn wait_auto_logout(self)
fn wait_auto_logout(self)
WaitAutoLogout() overload
Sourcefn initialize_nex(self)
fn initialize_nex(self)
InitializeNex() overload
Sourcefn setup_network_service_account(self)
fn setup_network_service_account(self)
SetupNetworkServiceAccount() overload
Sourcefn login_game_server(self)
fn login_game_server(self)
LoginGameServer() overload
Sourcefn get_integer_settings(self)
fn get_integer_settings(self)
GetIntegerSettings() overload
Sourcefn result_succeeded(self)
fn result_succeeded(self)
ResultSucceeded() overload
Sourcefn result_cancelled(self)
fn result_cancelled(self)
ResultCancelled() overload
Sourcefn result_failed(self)
fn result_failed(self)
ResultFailed() overload
Sourcefn show_error(self)
fn show_error(self)
ShowError() 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: INexLoginSequence> INexLoginSequenceMethods for __T
Available on crate feature
app-nexloginsequence only.