Struct languageserver_types::CompletionItemCapability
[−]
[src]
pub struct CompletionItemCapability {
pub snippet_support: Option<bool>,
}Fields
snippet_support: Option<bool>
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]
impl PartialEq for CompletionItemCapability[src]
fn eq(&self, __arg_0: &CompletionItemCapability) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &CompletionItemCapability) -> bool[src]
This method tests for !=.