cosmic::theme::style::menu_bar

Trait StyleSheet

Source
pub trait StyleSheet {
    type Style: Default;

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

The style sheet of a menu bar and its menus.

Required Associated Types§

Source

type Style: Default

The supported style of the StyleSheet.

Required Methods§

Source

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

Produces the Appearance of a menu bar and its menus.

Implementations on Foreign Types§

Source§

impl StyleSheet for fn(_: &Theme) -> Appearance

Source§

type Style = Theme

Source§

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

Implementors§