pub trait IUnitStatusMethods: IUnitStatus {
// Provided methods
fn create_async_2(self) { ... }
fn is_creating(self) -> bool { ... }
fn prepare(self) { ... }
fn tick(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn create_async_2(self)
fn create_async_2(self)
CreateAsync() overload
Sourcefn is_creating(self) -> bool
fn is_creating(self) -> bool
IsCreating() 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: IUnitStatus> IUnitStatusMethods for __T
Available on crate feature
app-unitstatus only.