pub trait IJobIntroStatusMethods: IJobIntroStatus {
// Provided methods
fn create_async_2(self) { ... }
fn is_creating(self) -> bool { ... }
fn tick(self) { ... }
fn start_job_intro_impl(self, unit: impl Into<Unit>) { ... }
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
Sourcefn start_job_intro_impl(self, unit: impl Into<Unit>)
fn start_job_intro_impl(self, unit: impl Into<Unit>)
StartJobIntroImpl(crate::app::unit::Unit) 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: IJobIntroStatus> IJobIntroStatusMethods for __T
Available on crate feature
app-jobintrostatus only.