pub trait ColorChooserImplExt: ColorChooserImpl {
// Provided methods
fn parent_add_palette(
&self,
orientation: Orientation,
colors_per_line: i32,
colors: &[RGBA],
) { ... }
fn parent_color_activated(&self, rgba: RGBA) { ... }
fn parent_rgba(&self) -> RGBA { ... }
fn parent_set_rgba(&self, rgba: RGBA) { ... }
}
๐Deprecated: Since 4.10
Provided Methodsยง
fn parent_add_palette( &self, orientation: Orientation, colors_per_line: i32, colors: &[RGBA], )
๐Deprecated: Since 4.10
fn parent_color_activated(&self, rgba: RGBA)
๐Deprecated: Since 4.10
fn parent_rgba(&self) -> RGBA
๐Deprecated: Since 4.10
fn parent_set_rgba(&self, rgba: RGBA)
๐Deprecated: Since 4.10
Dyn Compatibilityยง
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.