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§
fn with_color(color: &Color) -> ColorButton
fn color(&self) -> Color
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".