Struct languageserver_types::CodeActionCapability[][src]

pub struct CodeActionCapability {
    pub dynamic_registration: Option<bool>,
    pub code_action_literal_support: Option<CodeActionLiteralSupport>,
}

Fields

This capability supports dynamic registration.

The client support code action literals as a valid response of the textDocument/codeAction request.

Trait Implementations

impl Debug for CodeActionCapability
[src]

Formats the value using the given formatter. Read more

impl Eq for CodeActionCapability
[src]

impl PartialEq for CodeActionCapability
[src]

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

This method tests for !=.

impl Default for CodeActionCapability
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations