pub trait IBattleDebugManagerMethods: IBattleDebugManager {
// Provided methods
fn is_visible(self, name: impl Into<Il2CppString>) -> bool { ... }
fn set_visible(self, name: impl Into<Il2CppString>, enable: impl Into<bool>) { ... }
fn serialize(self) { ... }
fn deserialize(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn is_visible(self, name: impl Into<Il2CppString>) -> bool
fn is_visible(self, name: impl Into<Il2CppString>) -> bool
IsVisible(::unity::Il2CppString) overload
Sourcefn set_visible(self, name: impl Into<Il2CppString>, enable: impl Into<bool>)
fn set_visible(self, name: impl Into<Il2CppString>, enable: impl Into<bool>)
SetVisible(::unity::Il2CppString, bool) overload
Sourcefn deserialize(self)
fn deserialize(self)
Deserialize() 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: IBattleDebugManager> IBattleDebugManagerMethods for __T
Available on crate feature
app-battledebugmanager only.