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§
Sourcefn create_async(self)
fn create_async(self)
CreateAsync() overload
Sourcefn is_creating(self) -> bool
fn is_creating(self) -> bool
IsCreating() overload
Sourcefn set_visible(self, is_visible: impl Into<bool>)
fn set_visible(self, is_visible: impl Into<bool>)
SetVisible(bool) overload
Sourcefn add(self, type: impl Into<KeyHelp_Type>, text: impl Into<Il2CppString>)
fn add(self, type: impl Into<KeyHelp_Type>, text: impl Into<Il2CppString>)
Add(crate::app::keyhelp::KeyHelp_Type, ::unity::Il2CppString) overload
Sourcefn add_2(self, key_help_id: impl Into<Il2CppString>)
fn add_2(self, key_help_id: impl Into<Il2CppString>)
Add(::unity::Il2CppString) overload
Sourcefn create_impl(self)
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§
impl<__T: IKeyHelp_UI> IKeyHelp_UIMethods for __T
Available on crate feature
app-keyhelp only.