pub trait ColorButtonExtManual: 'static {
    // Required methods
    fn with_color(color: &Color) -> ColorButton;
    fn color(&self) -> Color;
    fn set_color(&self, color: &Color);
}

Required Methods§

source

fn with_color(color: &Color) -> ColorButton

source

fn color(&self) -> Color

source

fn set_color(&self, color: &Color)

Implementors§