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
is_incomplete: bool
This list it not complete. Further typing should result in recomputing this list.
items: Vec<CompletionItem>
The completion items.
Trait Implementations
impl Debug for CompletionList[src]
impl PartialEq for CompletionList[src]
fn eq(&self, __arg_0: &CompletionList) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &CompletionList) -> bool[src]
This method tests for !=.
impl Default for CompletionList[src]
fn default() -> CompletionList[src]
Returns the "default value" for a type. Read more