pub type ConnectionRx = TConnectionRx<Message>;
Expand description
The untyped connect rx for language servers.
Aliased Type§
struct ConnectionRx {
pub event: Receiver<Box<dyn Any + Send>>,
pub lsp: Receiver<Message>,
/* private fields */
}
Fields§
§event: Receiver<Box<dyn Any + Send>>
The receiver of the events.
lsp: Receiver<Message>
The receiver of the LSP messages.