qlue-ls 2.8.0

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

use crate::server::lsp::base_types::LSPAny;

#[derive(Debug, Serialize, PartialEq, Clone)]
pub struct Command {
    /// Title of the command, like `save`.
    pub title: String,
    /// The identifier of the actual command handler.
    pub command: String,
    /// Arguments that the command handler should be invoked with.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub arguments: Option<Vec<LSPAny>>,
}