pub trait IProcWaitMessageBaseMethods: IProcWaitMessageBase {
// Provided methods
fn ctor(self) { ... }
fn message_open_key_wait(self, msg: impl Into<Il2CppString>) { ... }
fn message_open_system_wait(
self,
msg: impl Into<Il2CppString>,
is_hide_wait_anime: impl Into<bool>,
) { ... }
fn message_close(self) { ... }
fn message_delete(self) { ... }
fn message_is_wait_to_open(self) -> bool { ... }
fn message_is_wait_to_close(self) -> bool { ... }
}Provided Methods§
Sourcefn message_open_key_wait(self, msg: impl Into<Il2CppString>)
fn message_open_key_wait(self, msg: impl Into<Il2CppString>)
MessageOpenKeyWait(::unity::Il2CppString) overload
Sourcefn message_open_system_wait(
self,
msg: impl Into<Il2CppString>,
is_hide_wait_anime: impl Into<bool>,
)
fn message_open_system_wait( self, msg: impl Into<Il2CppString>, is_hide_wait_anime: impl Into<bool>, )
MessageOpenSystemWait(::unity::Il2CppString, bool) overload
Sourcefn message_close(self)
fn message_close(self)
MessageClose() overload
Sourcefn message_delete(self)
fn message_delete(self)
MessageDelete() overload
Sourcefn message_is_wait_to_open(self) -> bool
fn message_is_wait_to_open(self) -> bool
MessageIsWaitToOpen() overload
Sourcefn message_is_wait_to_close(self) -> bool
fn message_is_wait_to_close(self) -> bool
MessageIsWaitToClose() 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: IProcWaitMessageBase> IProcWaitMessageBaseMethods for __T
Available on crate feature
app-procwaitmessagebase only.