pub trait ColorButtonExtManual: IsA<ColorButton> + Sealed + 'static {
    // Provided methods
    fn with_color(color: &Color) -> ColorButton { ... }
    fn color(&self) -> Color { ... }
    fn set_color(&self, color: &Color) { ... }
}

Provided Methods§

source

fn with_color(color: &Color) -> ColorButton

source

fn color(&self) -> Color

source

fn set_color(&self, color: &Color)

Implementors§