Struct languageserver_types::CompletionList[][src]

pub struct CompletionList {
    pub is_incomplete: bool,
    pub items: Vec<CompletionItem>,
}

Represents a collection of completion items to be presented in the editor.

Fields

This list it not complete. Further typing should result in recomputing this list.

The completion items.

Trait Implementations

impl Debug for CompletionList
[src]

Formats the value using the given formatter. Read more

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

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

Auto Trait Implementations