pub trait Catalog: Catalog {
    type Class<'a>;

    // Required methods
    fn default<'a>() -> Self::Class<'a>;
    fn style(&self, class: &Self::Class<'_>, status: Status) -> Style;

    // Provided method
    fn default_menu<'a>() -> Self::Class<'a> { ... }
}
Expand description

The theme catalog of a PickList.

Required Associated Types§

source

type Class<'a>

The item class of the Catalog.

Required Methods§

source

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

The default class produced by the Catalog.

source

fn style(&self, class: &Self::Class<'_>, status: Status) -> Style

The Style of a class with the given status.

Provided Methods§

source

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

The default class for the menu of the PickList.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl Catalog for Theme

§

type Class<'a> = Box<dyn Fn(&Theme, Status) -> Style + 'a>