Struct languageserver_types::CompletionOptions[][src]

pub struct CompletionOptions {
    pub resolve_provider: Option<bool>,
    pub trigger_characters: Option<Vec<String>>,
}

Completion options.

Fields

The server provides support to resolve additional information for a completion item.

The characters that trigger completion automatically.

Trait Implementations

impl Debug for CompletionOptions
[src]

Formats the value using the given formatter. Read more

impl Eq for CompletionOptions
[src]

impl PartialEq for CompletionOptions
[src]

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

This method tests for !=.

impl Default for CompletionOptions
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations