pub trait ColorMapper {
    fn convert_color(&self, c: Color) -> Color;
}

Required methods

Convert a single color

Implementations on Foreign Types

Implementors