Enum languageserver_types::request::CodeActionRequest[][src]

pub enum CodeActionRequest {}

The code action request is sent from the client to the server to compute commands for a given text document and range. The request is triggered when the user moves the cursor into a problem marker in the editor or presses the lightbulb associated with a marker.

Trait Implementations

impl Debug for CodeActionRequest
[src]

Formats the value using the given formatter. Read more

impl Request for CodeActionRequest
[src]

METHOD: &'static str = "textDocument/codeAction"

Auto Trait Implementations