Trait iced::widget::text::Catalog

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

    // Required methods
    fn default<'a>() -> Self::Class<'a>;
    fn style(&self, item: &Self::Class<'_>) -> Style;
}
Expand description

The theme catalog of a Text.

Required Associated Types§

source

type Class<'a>

The item class of this Catalog.

Required Methods§

source

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

The default class produced by this Catalog.

source

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

The Style of a class with the given status.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl Catalog for Theme

§

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