Struct languageserver_types::CompletionParams[][src]

pub struct CompletionParams {
    pub text_document: TextDocumentIdentifier,
    pub position: Position,
    pub context: Option<CompletionContext>,
}

Fields

The text document.

The position inside the text document.

Trait Implementations

impl Debug for CompletionParams
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CompletionParams
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations