pub trait IBakerMuscle: IObject {
// Provided methods
fn curve(self) -> AnimationCurve { ... }
fn set_curve(self, value: AnimationCurve) { ... }
fn muscle_index(self) -> i32 { ... }
fn set_muscle_index(self, value: i32) { ... }
fn property_name(self) -> Il2CppString { ... }
fn set_property_name(self, value: Il2CppString) { ... }
}Provided Methods§
fn curve(self) -> AnimationCurve
fn set_curve(self, value: AnimationCurve)
fn muscle_index(self) -> i32
fn set_muscle_index(self, value: i32)
fn property_name(self) -> Il2CppString
fn set_property_name(self, value: Il2CppString)
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.