pub trait IInterpolatorColorMethods: IInterpolatorColor {
// Provided methods
fn ctor(self, type: impl Into<Curve_Type>, num: impl Into<i32>) { ... }
fn get_value(self) -> Color { ... }
fn is_equal(self, a: impl Into<Color>, b: impl Into<Color>) -> 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: IInterpolatorColor> IInterpolatorColorMethods for __T
Available on crate feature
app-interpolatorcolor only.