pub trait ColorGamut {
    fn in_gamut(&self) -> bool;
    fn clip(&self) -> Self;
}

Required methods

Implementors