pub trait IInterpolatorRotationMethods: IInterpolatorRotation {
// Provided methods
fn ctor(self, type: impl Into<Curve_Type>, num: impl Into<i32>) { ... }
fn set(self, value: impl Into<f32>, time: impl Into<f32>) -> bool { ... }
}Provided Methods§
Sourcefn ctor(self, type: impl Into<Curve_Type>, num: impl Into<i32>)
fn ctor(self, type: impl Into<Curve_Type>, num: impl Into<i32>)
.ctor(crate::app::curve::Curve_Type, 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: IInterpolatorRotation> IInterpolatorRotationMethods for __T
Available on crate feature
app-interpolatorrotation only.