iced_aw/style/
style_state.rs

1//! Helper enum for the state of the style
2
3/// The state of the style
4#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
5pub enum StyleState {
6    /// Use the active style
7    Active,
8    /// Use the selected style
9    Selected,
10    /// Use the hovered style
11    Hovered,
12    /// Use the focused style
13    Focused,
14}