pub trait StyleSheet {
    type Style: Default;

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

A set of rules that dictate the style of a progress bar.

Required Associated Types§

type Style: Default

The supported style of the StyleSheet.

Required Methods§

fn appearance(&self, style: &Self::Style) -> Appearance

Produces the Appearance of the progress bar.

Implementors§

§

impl StyleSheet for Theme

§

impl<T> StyleSheet for T
where T: Fn(&Theme) -> Appearance,

§

type Style = Theme