Enum languageserver_types::request::ExecuteCommand[][src]

pub enum ExecuteCommand {}

The workspace/executeCommand request is sent from the client to the server to trigger command execution on the server. In most cases the server creates a WorkspaceEdit structure and applies the changes to the workspace using the request workspace/applyEdit which is sent from the server to the client.

Trait Implementations

impl Debug for ExecuteCommand
[src]

Formats the value using the given formatter. Read more

impl Request for ExecuteCommand
[src]

METHOD: &'static str = "workspace/executeCommand"

Auto Trait Implementations