Skip to main content

INexLoginSequenceMethods

Trait INexLoginSequenceMethods 

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

Source

fn ctor(self, is_show_error: impl Into<bool>)

.ctor(bool) overload

Source

fn on_create(self)

OnCreate() overload

Source

fn wait_auto_logout(self)

WaitAutoLogout() overload

Source

fn initialize_nex(self)

InitializeNex() overload

Source

fn setup_network_service_account(self)

SetupNetworkServiceAccount() overload

Source

fn login_game_server(self)

LoginGameServer() overload

Source

fn get_integer_settings(self)

GetIntegerSettings() overload

Source

fn result_succeeded(self)

ResultSucceeded() overload

Source

fn result_cancelled(self)

ResultCancelled() overload

Source

fn result_failed(self)

ResultFailed() overload

Source

fn show_error(self)

ShowError() overload

Source

fn cleanup(self)

Cleanup() 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: INexLoginSequence> INexLoginSequenceMethods for __T

Available on crate feature app-nexloginsequence only.