pub trait ColorInterop{
type CintTy: Into<Self>;
// Provided methods
fn from_cint(col: Self::CintTy) -> Self { ... }
fn into_cint(self) -> Self::CintTy { ... }
}Expand description
A trait that should be implemented by provider crates on their local color types so that you can call
color.to_cint() and Color::from_cint(cint_color).
Provider crates should also do relevant From/Into impls, but ColorInterop provides a “canonical”
transformation to the closest cint color type.
Required Associated Types§
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.