pub trait IJobIntroSequenceMethods: IJobIntroSequence {
// Provided methods
fn get_is_finished(self) -> bool { ... }
fn get_current_data(self) -> JobIntroData { ... }
fn initialize(self) { ... }
fn begin_map(self) { ... }
fn unload(self) { ... }
fn begin(self) -> IEnumerator { ... }
fn tick(self) -> IEnumerator { ... }
fn finish(self) -> IEnumerator { ... }
fn check_key_push(self) -> IEnumerator { ... }
fn branch_loop(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_is_finished(self) -> bool
fn get_is_finished(self) -> bool
get_IsFinished() overload
Sourcefn get_current_data(self) -> JobIntroData
fn get_current_data(self) -> JobIntroData
get_CurrentData() overload
Sourcefn initialize(self)
fn initialize(self)
Initialize() overload
Sourcefn begin(self) -> IEnumerator
fn begin(self) -> IEnumerator
Begin() overload
Sourcefn tick(self) -> IEnumerator
fn tick(self) -> IEnumerator
Tick() overload
Sourcefn finish(self) -> IEnumerator
fn finish(self) -> IEnumerator
Finish() overload
Sourcefn check_key_push(self) -> IEnumerator
fn check_key_push(self) -> IEnumerator
CheckKeyPush() overload
Sourcefn branch_loop(self)
fn branch_loop(self)
BranchLoop() 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: IJobIntroSequence> IJobIntroSequenceMethods for __T
Available on crate feature
app-jobintrosequence only.