Struct lsp::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 results in recomputing this list.

The completion items.

Methods

impl CompletionList
[src]

The CompletionList namespace provides functions to deal with completion lists.

Creates a new completion list.

@param items The completion items. @param isIncomplete The list is not complete.

Trait Implementations

impl Debug for CompletionList
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations