pub trait INetEnableSequenceMethods: INetEnableSequence {
// Provided methods
fn ctor(self) -> NetEnableSequence_Arg { ... }
fn confirm(self) { ... }
fn login(self) { ... }
fn postlogin(self) { ... }
fn wait_message_open(self) { ... }
fn wait_message_close(self) { ... }
fn result(self) { ... }
fn try_write_config(
self,
is_enable: impl Into<bool>,
with_user_data: impl Into<bool>,
) { ... }
}Provided Methods§
Sourcefn ctor(self) -> NetEnableSequence_Arg
fn ctor(self) -> NetEnableSequence_Arg
.ctor(*mutcrate::app::netenablesequence::NetEnableSequence_Arg) overload
Sourcefn wait_message_open(self)
fn wait_message_open(self)
WaitMessageOpen() overload
Sourcefn wait_message_close(self)
fn wait_message_close(self)
WaitMessageClose() overload
Sourcefn try_write_config(
self,
is_enable: impl Into<bool>,
with_user_data: impl Into<bool>,
)
fn try_write_config( self, is_enable: impl Into<bool>, with_user_data: impl Into<bool>, )
TryWriteConfig(bool, bool) 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: INetEnableSequence> INetEnableSequenceMethods for __T
Available on crate feature
app-netenablesequence only.