iced_af 0.4.1

The iced application framework project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Helper enum for the state of the style

/// The state of the style
#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub enum StyleState {
    /// Use the active style
    Active,
    /// Use the selected style
    Selected,
    /// Use the hovered style
    Hovered,
    /// Use the focused style
    Focused,
}