logo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub enum TargetPlatform {
    Android = 0,
    Fuchsia = 1,
    Ios = 2,
    Linux = 3,
    MacOs = 4,
    Windows = 5,
}

impl Default for TargetPlatform {
    fn default() -> Self {
        Self::Android
    }
}