luaur_cli_lib/enums/config_status.rs
1#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2#[allow(non_camel_case_types)]
3pub enum ConfigStatus {
4 Absent,
5 Ambiguous,
6 PresentJson,
7 PresentLuau,
8}
9
10impl ConfigStatus {
11 pub const Absent: Self = Self::Absent;
12 pub const Ambiguous: Self = Self::Ambiguous;
13 pub const PresentJson: Self = Self::PresentJson;
14 pub const PresentLuau: Self = Self::PresentLuau;
15}