qlue-ls 3.0.1

A language server for SPARQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use serde::Deserialize;

use crate::server::lsp::{LspMessage, rpc::NotificationMessageBase};

#[derive(Debug, Deserialize, PartialEq)]
pub struct UpdateDefaultBackendNotification {
    #[serde(flatten)]
    pub base: NotificationMessageBase,
    pub params: UpdateDefaultBackendParams,
}

impl LspMessage for UpdateDefaultBackendNotification {}

#[derive(Debug, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct UpdateDefaultBackendParams {
    pub backend_name: String,
}