pub type LspMessage = Message;Expand description
The common message type for the LSP protocol.
Aliased Type§
enum LspMessage {
    Request(Request),
    Response(Response),
    Notification(Notification),
}Variants§
Request(Request)
Request messages
Response(Response)
Response messages
Notification(Notification)
Notification messages
Trait Implementations§
Source§impl GetMessageKind for LspMessage
 
impl GetMessageKind for LspMessage
Source§const MESSAGE_KIND: MessageKind = MessageKind::Lsp
 
const MESSAGE_KIND: MessageKind = MessageKind::Lsp
Returns the kind of the message.