Struct languageserver_types::CodeActionOptions[][src]

pub struct CodeActionOptions {
    pub code_action_kinds: Option<Vec<String>>,
}

Fields

CodeActionKinds that this server may return.

The list of kinds may be generic, such as CodeActionKind.Refactor, or the server may list out every specific kind they provide.

Trait Implementations

impl Debug for CodeActionOptions
[src]

Formats the value using the given formatter. Read more

impl Eq for CodeActionOptions
[src]

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