Trait lsp_types::request::Request[][src]

pub trait Request {
    type Params: DeserializeOwned + Serialize;
    type Result: DeserializeOwned + Serialize;

    const METHOD: &'static str;
}

Associated Types

Associated Constants

Implementors

The goto declaration request is sent from the client to the server to resolve the declaration location of a symbol at a given text document position.