Skip to main content

luaur_analysis/enums/
autocomplete_entry_kind.rs

1#[allow(non_camel_case_types)]
2#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
3pub enum AutocompleteEntryKind {
4    Property,
5    Binding,
6    Keyword,
7    String,
8    Type,
9    Module,
10    GeneratedFunction,
11    RequirePath,
12    HotComment,
13}
14
15impl AutocompleteEntryKind {
16    pub const Property: Self = Self::Property;
17    pub const Binding: Self = Self::Binding;
18    pub const Keyword: Self = Self::Keyword;
19    pub const String: Self = Self::String;
20    pub const Type: Self = Self::Type;
21    pub const Module: Self = Self::Module;
22    pub const GeneratedFunction: Self = Self::GeneratedFunction;
23    pub const RequirePath: Self = Self::RequirePath;
24    pub const HotComment: Self = Self::HotComment;
25}