Enum lsp::types::CompletionItemKind[][src]

pub enum CompletionItemKind {
    Text,
    Method,
    Function,
    Constructor,
    Field,
    Variable,
    Class,
    Interface,
    Module,
    Property,
    Unit,
    Value,
    Enum,
    Keyword,
    Snippet,
    Color,
    File,
    Reference,
    Folder,
    EnumMember,
    Constant,
    Struct,
    Event,
    Operator,
    TypeParameter,
}

The kind of a completion entry.

Variants

Trait Implementations

impl Debug for CompletionItemKind
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations