pub trait IMusclePushUpSpeedDataMethods: IMusclePushUpSpeedData {
// Provided methods
fn get_id(self) -> Il2CppString { ... }
fn set_id(self, value: impl Into<Il2CppString>) { ... }
fn get_level(self) -> i32 { ... }
fn set_level(self, value: impl Into<i32>) { ... }
fn get_speed_min(self) -> f32 { ... }
fn set_speed_min(self, value: impl Into<f32>) { ... }
fn get_speed_max(self) -> f32 { ... }
fn set_speed_max(self, value: impl Into<f32>) { ... }
fn get_level_up_count(self) -> i32 { ... }
fn set_level_up_count(self, value: impl Into<i32>) { ... }
fn ctor(self) { ... }
fn on_build(self) { ... }
}Provided Methods§
Sourcefn get_id(self) -> Il2CppString
fn get_id(self) -> Il2CppString
get_ID() overload
Sourcefn set_id(self, value: impl Into<Il2CppString>)
fn set_id(self, value: impl Into<Il2CppString>)
set_ID(::unity::Il2CppString) overload
Sourcefn get_speed_min(self) -> f32
fn get_speed_min(self) -> f32
get_SpeedMin() overload
Sourcefn set_speed_min(self, value: impl Into<f32>)
fn set_speed_min(self, value: impl Into<f32>)
set_SpeedMin(f32) overload
Sourcefn get_speed_max(self) -> f32
fn get_speed_max(self) -> f32
get_SpeedMax() overload
Sourcefn set_speed_max(self, value: impl Into<f32>)
fn set_speed_max(self, value: impl Into<f32>)
set_SpeedMax(f32) overload
Sourcefn get_level_up_count(self) -> i32
fn get_level_up_count(self) -> i32
get_LevelUpCount() overload
Sourcefn set_level_up_count(self, value: impl Into<i32>)
fn set_level_up_count(self, value: impl Into<i32>)
set_LevelUpCount(i32) 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: IMusclePushUpSpeedData> IMusclePushUpSpeedDataMethods for __T
Available on crate feature
app-musclepushupspeeddata only.