Enum lsp_types::request::ExecuteCommand
source · pub enum ExecuteCommand {}
Expand description
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§
source§impl Debug for ExecuteCommand
impl Debug for ExecuteCommand
Auto Trait Implementations§
impl Freeze for ExecuteCommand
impl RefUnwindSafe for ExecuteCommand
impl Send for ExecuteCommand
impl Sync for ExecuteCommand
impl Unpin for ExecuteCommand
impl UnwindSafe for ExecuteCommand
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more