Struct languageserver_types::CompletionItemCapability [] [src]

pub struct CompletionItemCapability {
    pub snippet_support: Option<bool>,
}

Fields

Client supports snippets as insert text.

A snippet can define tab stops and placeholders with $1, $2 and ${3:foo}. $0 defines the final tab stop, it defaults to the end of the snippet. Placeholders with equal identifiers are linked, that is typing in one will update others too.

Trait Implementations

impl Debug for CompletionItemCapability
[src]

Formats the value using the given formatter.

impl PartialEq for CompletionItemCapability
[src]

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

This method tests for !=.