Skip to main content

IProcWaitMessageBaseMethods

Trait IProcWaitMessageBaseMethods 

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

Source

fn ctor(self)

.ctor() overload

Source

fn message_open_key_wait(self, msg: impl Into<Il2CppString>)

MessageOpenKeyWait(::unity::Il2CppString) overload

Source

fn message_open_system_wait( self, msg: impl Into<Il2CppString>, is_hide_wait_anime: impl Into<bool>, )

MessageOpenSystemWait(::unity::Il2CppString, bool) overload

Source

fn message_close(self)

MessageClose() overload

Source

fn message_delete(self)

MessageDelete() overload

Source

fn message_is_wait_to_open(self) -> bool

MessageIsWaitToOpen() overload

Source

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§

Source§

impl<__T: IProcWaitMessageBase> IProcWaitMessageBaseMethods for __T

Available on crate feature app-procwaitmessagebase only.