pub trait IMuscleExerciseSequenceMethods: IMuscleExerciseSequence {
Show 21 methods
// Provided methods
fn get_select_type(self) -> i32 { ... }
fn set_select_type(self, value: impl Into<i32>) { ... }
fn get_select_level(self) -> i32 { ... }
fn set_select_level(self, value: impl Into<i32>) { ... }
fn get_is_assist(self) -> bool { ... }
fn set_is_assist(self, value: impl Into<bool>) { ... }
fn ctor(self) { ... }
fn init(self) { ... }
fn load_resources(self) { ... }
fn is_loading(self) -> bool { ... }
fn setup(self) { ... }
fn check_jump_squat(self) -> bool { ... }
fn check_jump_push_up(self) -> bool { ... }
fn check_jump_sit_up(self) -> bool { ... }
fn tick(self) { ... }
fn create_push_up_sequence(self) { ... }
fn create_sit_up_sequence(self) { ... }
fn create_squat_sequence(self) { ... }
fn increase_play_counter(self) { ... }
fn final(self) { ... }
fn unload_resources(self) { ... }
}Provided Methods§
Sourcefn get_select_type(self) -> i32
fn get_select_type(self) -> i32
get_SelectType() overload
Sourcefn set_select_type(self, value: impl Into<i32>)
fn set_select_type(self, value: impl Into<i32>)
set_SelectType(i32) overload
Sourcefn get_select_level(self) -> i32
fn get_select_level(self) -> i32
get_SelectLevel() overload
Sourcefn set_select_level(self, value: impl Into<i32>)
fn set_select_level(self, value: impl Into<i32>)
set_SelectLevel(i32) overload
Sourcefn get_is_assist(self) -> bool
fn get_is_assist(self) -> bool
get_IsAssist() overload
Sourcefn set_is_assist(self, value: impl Into<bool>)
fn set_is_assist(self, value: impl Into<bool>)
set_IsAssist(bool) overload
Sourcefn load_resources(self)
fn load_resources(self)
LoadResources() overload
Sourcefn is_loading(self) -> bool
fn is_loading(self) -> bool
IsLoading() overload
Sourcefn check_jump_squat(self) -> bool
fn check_jump_squat(self) -> bool
CheckJumpSquat() overload
Sourcefn check_jump_push_up(self) -> bool
fn check_jump_push_up(self) -> bool
CheckJumpPushUp() overload
Sourcefn check_jump_sit_up(self) -> bool
fn check_jump_sit_up(self) -> bool
CheckJumpSitUp() overload
Sourcefn create_push_up_sequence(self)
fn create_push_up_sequence(self)
CreatePushUpSequence() overload
Sourcefn create_sit_up_sequence(self)
fn create_sit_up_sequence(self)
CreateSitUpSequence() overload
Sourcefn create_squat_sequence(self)
fn create_squat_sequence(self)
CreateSquatSequence() overload
Sourcefn increase_play_counter(self)
fn increase_play_counter(self)
IncreasePlayCounter() overload
Sourcefn unload_resources(self)
fn unload_resources(self)
UnloadResources() 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: IMuscleExerciseSequence> IMuscleExerciseSequenceMethods for __T
Available on crate feature
app-muscleexercisesequence only.