pub trait ColorType {
    type ValueType;

    // Required method
    fn channel(&self, c: usize) -> Option<Self::ValueType>;
}

Required Associated Types§

Required Methods§

source

fn channel(&self, c: usize) -> Option<Self::ValueType>

Implementors§