Skip to main content

luaur_analysis/enums/
kind.rs

1#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2#[allow(non_camel_case_types)]
3pub enum Kind {
4    Type,
5    Pack,
6}
7
8impl Kind {
9    pub const Type: Self = Self::Type;
10    pub const Pack: Self = Self::Pack;
11}