pub trait ColorSpace {
    fn from_color(c: &Color) -> Self;
    fn into_color(self) -> Color;
    fn mix(&self, other: &Self, fraction: Fraction) -> Self;
}

Required Methods

Implementors