pub trait AnimationCompatibleCurve<T>:
Curve<T>
+ Debug
+ Clone
+ Reflectable { }
Expand description
This trait collects the additional requirements on top of Curve<T>
needed for a
curve to be used as an 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.