luaur-cli-lib 0.1.2

Shared CLI helpers for the luaur tools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
#[allow(non_camel_case_types)]
pub enum ConfigStatus {
    Absent,
    Ambiguous,
    PresentJson,
    PresentLuau,
}

impl ConfigStatus {
    pub const Absent: Self = Self::Absent;
    pub const Ambiguous: Self = Self::Ambiguous;
    pub const PresentJson: Self = Self::PresentJson;
    pub const PresentLuau: Self = Self::PresentLuau;
}