luaur_analysis/enums/table_state.rs
1#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2#[allow(non_camel_case_types)]
3pub enum TableState {
4 Sealed,
5 Unsealed,
6 Free,
7 Generic,
8}
9
10impl TableState {
11 pub const Sealed: Self = Self::Sealed;
12 pub const Unsealed: Self = Self::Unsealed;
13 pub const Free: Self = Self::Free;
14 pub const Generic: Self = Self::Generic;
15}