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 Debug for CompletionListfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for CompletionList[src]
impl PartialEq for CompletionListfn eq(&self, other: &CompletionList) -> bool[src]
fn eq(&self, other: &CompletionList) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &CompletionList) -> bool[src]
fn ne(&self, other: &CompletionList) -> boolThis method tests for !=.
impl Default for CompletionList[src]
impl Default for CompletionListfn default() -> CompletionList[src]
fn default() -> CompletionListReturns the "default value" for a type. Read more
Auto Trait Implementations
impl Send for CompletionList
impl Send for CompletionListimpl Sync for CompletionList
impl Sync for CompletionList