Struct languageserver_types::CodeActionParams[][src]

pub struct CodeActionParams {
    pub text_document: TextDocumentIdentifier,
    pub range: Range,
    pub context: CodeActionContext,
}

Params for the CodeActionRequest

Fields

The document in which the command was invoked.

The range for which the command was invoked.

Context carrying additional information.

Trait Implementations

impl Debug for CodeActionParams
[src]

Formats the value using the given formatter. Read more

impl Eq for CodeActionParams
[src]

impl PartialEq for CodeActionParams
[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