pub trait ColorButtonExtManual: 'static {
    fn new_with_color(color: &Color) -> ColorButton;
    fn get_color(&self) -> Color;
    fn set_color(&self, color: &Color);
}

Required Methods

Implementors