pub trait IRotationLimitSpline: IRotationLimit {
// Provided methods
fn twist_limit(self) -> f32 { ... }
fn set_twist_limit(self, value: f32) { ... }
fn spline_field(self) -> AnimationCurve { ... }
fn set_spline_field(self, value: AnimationCurve) { ... }
}Provided Methods§
fn twist_limit(self) -> f32
fn set_twist_limit(self, value: f32)
fn spline_field(self) -> AnimationCurve
fn set_spline_field(self, value: AnimationCurve)
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.