This crate provides types used for LSP, and some helper structures, macro and trait for handling message.
For more information about LSP, see LSP - overview.
check examples of lsp-io
If you want to custom request/response pair. First, define you request params and response result
type, with Serialize
and Deserialize
derive.
```rust
pub struct MyParams { pub name: String, pub pos: Position }
pub struct MyResult {
pub data: Vec
then use impl_req
helper macro to auto complete FromReq
trait for you custom types
rust
// the second param is you custom request method
impl_req!(MyParams, "custom/my", MyResult);
impl notification message is similar with above, except that, notification does not need to specify response type.