pub trait IHubEventAreaMethods: IHubEventArea {
// Provided methods
fn get_is_complete(self) -> bool { ... }
fn get_flag_name(self) -> Il2CppString { ... }
fn is_enabled(self) -> bool { ... }
fn is_executed(self) -> bool { ... }
fn set_execute(self) { ... }
fn awake(self) { ... }
fn start(self) { ... }
fn enter(self) { ... }
fn leave(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_is_complete(self) -> bool
fn get_is_complete(self) -> bool
get_IsComplete() overload
Sourcefn get_flag_name(self) -> Il2CppString
fn get_flag_name(self) -> Il2CppString
get_FlagName() overload
Sourcefn is_enabled(self) -> bool
fn is_enabled(self) -> bool
IsEnabled() overload
Sourcefn is_executed(self) -> bool
fn is_executed(self) -> bool
IsExecuted() overload
Sourcefn set_execute(self)
fn set_execute(self)
SetExecute() 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: IHubEventArea> IHubEventAreaMethods for __T
Available on crate feature
app-hubeventarea only.