Trait iced::widget::text::StyleSheet

pub trait StyleSheet {
    type Style: Default + Copy;

    fn appearance(&self, style: Self::Style) -> Appearance;
}
Expand description

The style sheet of some text.

Required Associated Types§

The supported style of the StyleSheet.

Required Methods§

Produces the Appearance of some text.

Implementors§