Skip to main content

IKeyHelp_UIMethods

Trait IKeyHelp_UIMethods 

Source
pub trait IKeyHelp_UIMethods: IKeyHelp_UI {
    // Provided methods
    fn ctor(self) { ... }
    fn create_async(self) { ... }
    fn is_creating(self) -> bool { ... }
    fn destroy(self) { ... }
    fn set_visible(self, is_visible: impl Into<bool>) { ... }
    fn add(self, type: impl Into<KeyHelp_Type>, text: impl Into<Il2CppString>) { ... }
    fn add_2(self, key_help_id: impl Into<Il2CppString>) { ... }
    fn clear(self) { ... }
    fn create_impl(self) { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn create_async(self)

CreateAsync() overload

Source

fn is_creating(self) -> bool

IsCreating() overload

Source

fn destroy(self)

Destroy() overload

Source

fn set_visible(self, is_visible: impl Into<bool>)

SetVisible(bool) overload

Source

fn add(self, type: impl Into<KeyHelp_Type>, text: impl Into<Il2CppString>)

Add(crate::app::keyhelp::KeyHelp_Type, ::unity::Il2CppString) overload

Source

fn add_2(self, key_help_id: impl Into<Il2CppString>)

Add(::unity::Il2CppString) overload

Source

fn clear(self)

Clear() overload

Source

fn create_impl(self)

CreateImpl() 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: IKeyHelp_UI> IKeyHelp_UIMethods for __T

Available on crate feature app-keyhelp only.