ux-components 0.1.3

Backend agnostic GUI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum AppLifecycleState {
    Resumed = 0,
    Inactive = 1,
    Paused = 2,
    Detached = 3,
}

impl Default for AppLifecycleState {
    fn default() -> Self {
        Self::Resumed
    }
}