pub trait IMuscleStartSequenceMethods: IMuscleStartSequence {
Show 22 methods
// Provided methods
fn ctor(self) { ... }
fn load_resources(self) { ... }
fn is_loading(self) -> bool { ... }
fn init(self) { ... }
fn open_title_bar(self) { ... }
fn close_title_bar(self) { ... }
fn open_exercise_type_menu(self) { ... }
fn tutorial(self) { ... }
fn check_new_difficult(self) { ... }
fn announce_new_difficult(self) { ... }
fn check_announce_difficult(self) -> bool { ... }
fn open_difficult_menu(self) { ... }
fn create_assist_dialog(self) { ... }
fn create_game_sequence(self) { ... }
fn create_continue_dialog(self) { ... }
fn check_continue(self) -> bool { ... }
fn exit(self) { ... }
fn unload_resources(self) { ... }
fn voice_select_type(self) { ... }
fn voice_new_difficult(self) { ... }
fn voice_select_difficult(self) { ... }
fn voice_finish_exercise(self) { ... }
}Provided Methods§
Sourcefn load_resources(self)
fn load_resources(self)
LoadResources() overload
Sourcefn is_loading(self) -> bool
fn is_loading(self) -> bool
IsLoading() overload
Sourcefn open_title_bar(self)
fn open_title_bar(self)
OpenTitleBar() overload
Sourcefn close_title_bar(self)
fn close_title_bar(self)
CloseTitleBar() overload
OpenExerciseTypeMenu() overload
Sourcefn check_new_difficult(self)
fn check_new_difficult(self)
CheckNewDifficult() overload
Sourcefn announce_new_difficult(self)
fn announce_new_difficult(self)
AnnounceNewDifficult() overload
Sourcefn check_announce_difficult(self) -> bool
fn check_announce_difficult(self) -> bool
CheckAnnounceDifficult() overload
OpenDifficultMenu() overload
Sourcefn create_assist_dialog(self)
fn create_assist_dialog(self)
CreateAssistDialog() overload
Sourcefn create_game_sequence(self)
fn create_game_sequence(self)
CreateGameSequence() overload
Sourcefn create_continue_dialog(self)
fn create_continue_dialog(self)
CreateContinueDialog() overload
Sourcefn check_continue(self) -> bool
fn check_continue(self) -> bool
CheckContinue() overload
Sourcefn unload_resources(self)
fn unload_resources(self)
UnloadResources() overload
Sourcefn voice_select_type(self)
fn voice_select_type(self)
VoiceSelectType() overload
Sourcefn voice_new_difficult(self)
fn voice_new_difficult(self)
VoiceNewDifficult() overload
Sourcefn voice_select_difficult(self)
fn voice_select_difficult(self)
VoiceSelectDifficult() overload
Sourcefn voice_finish_exercise(self)
fn voice_finish_exercise(self)
VoiceFinishExercise() 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: IMuscleStartSequence> IMuscleStartSequenceMethods for __T
Available on crate feature
app-musclestartsequence only.