Trait DropdownThemePartialExt

Source
pub trait DropdownThemePartialExt {
    // Required methods
    fn width(self, width: impl Into<Size>) -> Self;
    fn margin(self, margin: impl Into<Gaps>) -> Self;
    fn dropdown_background(self, dropdown_background: impl Into<Color>) -> Self;
    fn background_button(self, background_button: impl Into<Color>) -> Self;
    fn hover_background(self, hover_background: impl Into<Color>) -> Self;
    fn border_fill(self, border_fill: impl Into<Color>) -> Self;
    fn focus_border_fill(self, focus_border_fill: impl Into<Color>) -> Self;
    fn arrow_fill(self, arrow_fill: impl Into<Color>) -> Self;
    fn color(self, color: impl Into<Color>) -> Self;
}

Required Methods§

Source

fn width(self, width: impl Into<Size>) -> Self

Source

fn margin(self, margin: impl Into<Gaps>) -> Self

Source

fn dropdown_background(self, dropdown_background: impl Into<Color>) -> Self

Source

fn background_button(self, background_button: impl Into<Color>) -> Self

Source

fn hover_background(self, hover_background: impl Into<Color>) -> Self

Source

fn border_fill(self, border_fill: impl Into<Color>) -> Self

Source

fn focus_border_fill(self, focus_border_fill: impl Into<Color>) -> Self

Source

fn arrow_fill(self, arrow_fill: impl Into<Color>) -> Self

Source

fn color(self, color: impl Into<Color>) -> Self

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.

Implementors§