pub(crate) trait ColorComponentForCicp: Copy {
// Required methods
fn expand_to_f32(self) -> f32;
fn clamp_from_f32(val: f32) -> Self;
}Required Methods§
fn expand_to_f32(self) -> f32
fn clamp_from_f32(val: f32) -> Self
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.