pub trait IAccount_SetupNsaSequenceMethods: IAccount_SetupNsaSequence {
// Provided methods
fn ctor(
self,
is_show_error: impl Into<bool>,
result_func: impl Into<Account_SetupNsaResultFunction>,
) { ... }
fn ensure(self) { ... }
fn ensure_id_token_cache(self) { ... }
fn ensure_id_token_cache_tick(self) { ... }
fn success(self) { ... }
fn check_error(self) { ... }
fn show_error(self) { ... }
fn cancel(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
is_show_error: impl Into<bool>,
result_func: impl Into<Account_SetupNsaResultFunction>,
)
fn ctor( self, is_show_error: impl Into<bool>, result_func: impl Into<Account_SetupNsaResultFunction>, )
.ctor(bool, crate::app::account::Account_SetupNsaResultFunction) overload
Sourcefn ensure_id_token_cache(self)
fn ensure_id_token_cache(self)
EnsureIdTokenCache() overload
Sourcefn ensure_id_token_cache_tick(self)
fn ensure_id_token_cache_tick(self)
EnsureIdTokenCacheTick() overload
Sourcefn check_error(self)
fn check_error(self)
CheckError() 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: IAccount_SetupNsaSequence> IAccount_SetupNsaSequenceMethods for __T
Available on crate feature
app-account only.