Enum languageserver_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

impl Eq for CompletionItemKind
[src]

impl PartialEq for CompletionItemKind
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for CompletionItemKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for CompletionItemKind
[src]

impl<'de> Deserialize<'de> for CompletionItemKind
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for CompletionItemKind
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations