pub trait Catalog: Catalog + Catalog {
    // Provided methods
    fn default_input<'a>() -> Self::Class<'a> { ... }
    fn default_menu<'a>() -> Self::Class<'a> { ... }
}
Expand description

The theme catalog of a ComboBox.

Provided Methods§

source

fn default_input<'a>() -> Self::Class<'a>

The default class for the text input of the ComboBox.

source

fn default_menu<'a>() -> Self::Class<'a>

The default class for the menu of the ComboBox.

Object Safety§

This trait is not object safe.

Implementors§