pub trait LspAdapterDelegate: Send + Sync {
    // Required methods
    fn show_notification(&self, message: &str, cx: &mut AppContext);
    fn http_client(&self) -> Arc<dyn HttpClient>;
}

Required Methods§

source

fn show_notification(&self, message: &str, cx: &mut AppContext)

source

fn http_client(&self) -> Arc<dyn HttpClient>

Implementors§