pub trait IChallengeSequenceMethods: IChallengeSequence {
Show 14 methods
// Provided methods
fn ctor(self) { ... }
fn create_desc(self) -> Array<ProcDesc> { ... }
fn load_resources(self) { ... }
fn is_loading_resources(self) -> bool { ... }
fn start_sequence(self) { ... }
fn create_map_select_root(self) { ... }
fn open_title(self) { ... }
fn create_map_select_menu(self) { ... }
fn create_difficulty_menu(self) { ... }
fn close(self) { ... }
fn is_closed(self) -> bool { ... }
fn destroy_map_select_root(self) { ... }
fn setup_challenge(self) { ... }
fn end_sequence(self) { ... }
}Provided Methods§
Sourcefn create_desc(self) -> Array<ProcDesc>
fn create_desc(self) -> Array<ProcDesc>
CreateDesc() overload
Sourcefn load_resources(self)
fn load_resources(self)
LoadResources() overload
Sourcefn is_loading_resources(self) -> bool
fn is_loading_resources(self) -> bool
IsLoadingResources() overload
Sourcefn start_sequence(self)
fn start_sequence(self)
StartSequence() overload
Sourcefn create_map_select_root(self)
fn create_map_select_root(self)
CreateMapSelectRoot() overload
Sourcefn open_title(self)
fn open_title(self)
OpenTitle() overload
CreateMapSelectMenu() overload
CreateDifficultyMenu() overload
Sourcefn destroy_map_select_root(self)
fn destroy_map_select_root(self)
DestroyMapSelectRoot() overload
Sourcefn setup_challenge(self)
fn setup_challenge(self)
SetupChallenge() overload
Sourcefn end_sequence(self)
fn end_sequence(self)
EndSequence() 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: IChallengeSequence> IChallengeSequenceMethods for __T
Available on crate feature
app-challengesequence only.