pub trait ColorType {
    type ValueType;
    fn channel(&self, c: usize) -> Option<Self::ValueType>;
}

Associated Types

Required methods

Implementors