pub trait BrushSetter<Brush, T> {
    fn set(&mut self, brush: &Brush, value: T);
}

Required Methods

Implementors