Struct languageserver_types::CompletionCapability[][src]

pub struct CompletionCapability {
    pub dynamic_registration: Option<bool>,
    pub completion_item: Option<CompletionItemCapability>,
}

Fields

Whether completion supports dynamic registration.

The client supports the following CompletionItem specific capabilities.

Trait Implementations

impl Debug for CompletionCapability
[src]

Formats the value using the given formatter. Read more

impl Eq for CompletionCapability
[src]

impl PartialEq for CompletionCapability
[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 CompletionCapability
[src]

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

Auto Trait Implementations