pub trait ITMP_ColorGradientMethods: ITMP_ColorGradient {
// Provided methods
fn ctor(self) { ... }
fn ctor_2(self, color: impl Into<Color>) { ... }
fn ctor_3(
self,
color0: impl Into<Color>,
color1: impl Into<Color>,
color2: impl Into<Color>,
color3: impl Into<Color>,
) { ... }
}Provided Methods§
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: ITMP_ColorGradient> ITMP_ColorGradientMethods for __T
Available on crate feature
tm_pro-tmp_colorgradient only.