Struct languageserver_types::CompletionItemCapability
[−]
[src]
pub struct CompletionItemCapability {
pub snippet_support: Option<bool>,
pub commit_characters_support: Option<bool>,
pub documentation_format: Option<Vec<MarkupKind>>,
}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.
commit_characters_support: Option<bool>
documentation_format: Option<Vec<MarkupKind>>
Trait Implementations
impl Debug for CompletionItemCapability[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Eq 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 !=.
impl Default for CompletionItemCapability[src]
fn default() -> CompletionItemCapability[src]
Returns the "default value" for a type. Read more