//! Generated from the official LSP meta-model.
//! Do not hand-edit generated protocol vocabulary.
#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(clippy::large_enum_variant)]
#![allow(clippy::enum_variant_names)]
#![allow(clippy::upper_case_acronyms)]
#![allow(clippy::doc_lazy_continuation)]
#![allow(clippy::derive_partial_eq_without_eq)]
#![allow(dead_code)]
#![allow(unused_imports)]
#![allow(non_upper_case_globals)]
use serde::{Deserialize, Serialize};
use serde_json::Value as LspAny;
pub const LSP_SPEC_VERSION: &str = "3.18.0";
pub type URI = String;
pub type DocumentUri = String;
pub type RegExp = String;
pub type Integer = i32;
pub type Uinteger = u32;
pub type Decimal = f64;
/**The definition of a symbol represented as one or many {@link Location locations}.
For most programming languages there is only one location at which a symbol is
defined.
Servers should prefer returning `DefinitionLink` over `Definition` if supported
by the client.*/
pub type Definition = LocationOrLocationArray;
/**Information about where a symbol is defined.
Provides additional metadata over normal {@link Location location} definitions, including the range of
the defining symbol*/
pub type DefinitionLink = LocationLink;
/**LSP arrays.
@since 3.17.0*/
pub type LSPArray = Vec<LSPAny>;
/**The LSP any type.
Please note that strictly speaking a property with the value `undefined`
can't be converted into JSON preserving the property name. However for
convenience it is allowed and assumed that all these properties are
optional as well.
@since 3.17.0*/
pub type LSPAny = Option<
BooleanOrDecimalOrIntegerOrLSPArrayOrLSPObjectOrStringOrUinteger,
>;
///The declaration of a symbol representation as one or many {@link Location locations}.
pub type Declaration = LocationOrLocationArray;
/**Information about where a symbol is declared.
Provides additional metadata over normal {@link Location location} declarations, including the range of
the declaring symbol.
Servers should prefer returning `DeclarationLink` over `Declaration` if supported
by the client.*/
pub type DeclarationLink = LocationLink;
/**Inline value information can be provided by different means:
- directly as a text value (class InlineValueText).
- as a name to use for a variable lookup (class InlineValueVariableLookup)
- as an evaluatable expression (class InlineValueEvaluatableExpression)
The InlineValue types combines all inline value types into one type.
@since 3.17.0*/
pub type InlineValue = InlineValueEvaluatableExpressionOrInlineValueTextOrInlineValueVariableLookup;
/**The result of a document diagnostic pull request. A report can
either be a full report containing all diagnostics for the
requested document or an unchanged report indicating that nothing
has changed in terms of diagnostics in comparison to the last
pull request.
@since 3.17.0*/
pub type DocumentDiagnosticReport = RelatedFullDocumentDiagnosticReportOrRelatedUnchangedDocumentDiagnosticReport;
pub type PrepareRenameResult = PrepareRenameDefaultBehaviorOrPrepareRenamePlaceholderOrRange;
/**A document selector is the combination of one or many document filters.
@sample `let sel:DocumentSelector = [{ language: 'typescript' }, { language: 'json', pattern: '**∕tsconfig.json' }]`;
The use of a string as a document filter is deprecated @since 3.16.0.*/
pub type DocumentSelector = Vec<DocumentFilter>;
pub type ProgressToken = IntegerOrString;
///An identifier to refer to a change annotation stored with a workspace edit.
pub type ChangeAnnotationIdentifier = String;
/**A workspace diagnostic document report.
@since 3.17.0*/
pub type WorkspaceDocumentDiagnosticReport = WorkspaceFullDocumentDiagnosticReportOrWorkspaceUnchangedDocumentDiagnosticReport;
/**An event describing a change to a text document. If only a text is provided
it is considered to be the full content of the document.*/
pub type TextDocumentContentChangeEvent = TextDocumentContentChangePartialOrTextDocumentContentChangeWholeDocument;
/**MarkedString can be used to render human readable text. It is either a markdown string
or a code-block that provides a language and a code snippet. The language identifier
is semantically equal to the optional language identifier in fenced code blocks in GitHub
issues. See https://help.github.com/articles/creating-and-highlighting-code-blocks/#syntax-highlighting
The pair of a language and a value is an equivalent to markdown:
```${language}
${value}
```
Note that markdown strings will be sanitized - that means html will be escaped.
@deprecated use MarkupContent instead.*/
pub type MarkedString = MarkedStringWithLanguageOrString;
/**A document filter describes a top level text document or
a notebook cell document.
@since 3.17.0 - support for NotebookCellTextDocumentFilter.*/
pub type DocumentFilter = NotebookCellTextDocumentFilterOrTextDocumentFilter;
/**LSP object definition.
@since 3.17.0*/
pub type LSPObject = std::collections::BTreeMap<String, LSPAny>;
/**The glob pattern. Either a string pattern or a relative pattern.
@since 3.17.0*/
pub type GlobPattern = PatternOrRelativePattern;
#[doc = "A document filter denotes a document by different properties like\nthe {@link TextDocument.languageId language}, the {@link Uri.scheme scheme} of\nits resource, or a glob-pattern that is applied to the {@link TextDocument.fileName path}.\n\nGlob patterns can have the following syntax:\n- `*` to match zero or more characters in a path segment\n- `?` to match on one character in a path segment\n- `**` to match any number of path segments, including none\n- `{}` to group sub patterns into an OR expression. (e.g. `**\u{200b}/*.{ts,js}` matches all TypeScript and JavaScript files)\n- `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)\n- `[!...]` to negate a range of characters to match in a path segment (e.g., `example.[!0-9]` to match on `example.a`, `example.b`, but not `example.0`)\n\n@sample A language filter that applies to typescript files on disk: `{ language: 'typescript', scheme: 'file' }`\n@sample A language filter that applies to all package.json paths: `{ language: 'json', pattern: '**package.json' }`\n\n@since 3.17.0"]
pub type TextDocumentFilter = TextDocumentFilterLanguageOrTextDocumentFilterPatternOrTextDocumentFilterScheme;
/**A notebook document filter denotes a notebook document by
different properties. The properties will be match
against the notebook's URI (same as with documents)
@since 3.17.0*/
pub type NotebookDocumentFilter = NotebookDocumentFilterNotebookTypeOrNotebookDocumentFilterPatternOrNotebookDocumentFilterScheme;
#[doc = "The glob pattern to watch relative to the base path. Glob patterns can have the following syntax:\n- `*` to match zero or more characters in a path segment\n- `?` to match on one character in a path segment\n- `**` to match any number of path segments, including none\n- `{}` to group conditions (e.g. `**\u{200b}/*.{ts,js}` matches all TypeScript and JavaScript files)\n- `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)\n- `[!...]` to negate a range of characters to match in a path segment (e.g., `example.[!0-9]` to match on `example.a`, `example.b`, but not `example.0`)\n\n@since 3.17.0"]
pub type Pattern = String;
pub type RegularExpressionEngineKind = String;
/**A set of predefined token types. This set is not fixed
an clients can specify additional token types via the
corresponding client capabilities.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct SemanticTokenTypes(pub String);
impl SemanticTokenTypes {
pub const NAMESPACE: &'static str = "namespace";
pub const TYPE: &'static str = "type";
pub const CLASS: &'static str = "class";
pub const ENUM: &'static str = "enum";
pub const INTERFACE: &'static str = "interface";
pub const STRUCT: &'static str = "struct";
pub const TYPE_PARAMETER: &'static str = "typeParameter";
pub const PARAMETER: &'static str = "parameter";
pub const VARIABLE: &'static str = "variable";
pub const PROPERTY: &'static str = "property";
pub const ENUM_MEMBER: &'static str = "enumMember";
pub const EVENT: &'static str = "event";
pub const FUNCTION: &'static str = "function";
pub const METHOD: &'static str = "method";
pub const MACRO: &'static str = "macro";
pub const KEYWORD: &'static str = "keyword";
pub const MODIFIER: &'static str = "modifier";
pub const COMMENT: &'static str = "comment";
pub const STRING: &'static str = "string";
pub const NUMBER: &'static str = "number";
pub const REGEXP: &'static str = "regexp";
pub const OPERATOR: &'static str = "operator";
pub const DECORATOR: &'static str = "decorator";
pub const LABEL: &'static str = "label";
}
/**A set of predefined token modifiers. This set is not fixed
an clients can specify additional token types via the
corresponding client capabilities.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct SemanticTokenModifiers(pub String);
impl SemanticTokenModifiers {
pub const DECLARATION: &'static str = "declaration";
pub const DEFINITION: &'static str = "definition";
pub const READONLY: &'static str = "readonly";
pub const STATIC: &'static str = "static";
pub const DEPRECATED: &'static str = "deprecated";
pub const ABSTRACT: &'static str = "abstract";
pub const ASYNC: &'static str = "async";
pub const MODIFICATION: &'static str = "modification";
pub const DOCUMENTATION: &'static str = "documentation";
pub const DEFAULT_LIBRARY: &'static str = "defaultLibrary";
}
/**The document diagnostic report kinds.
@since 3.17.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum DocumentDiagnosticReportKind {
/**A diagnostic report with a full
set of problems.*/
#[serde(rename = "full")]
Full,
/**A report indicating that the last
returned report is still accurate.*/
#[serde(rename = "unchanged")]
Unchanged,
}
///Predefined error codes.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct ErrorCodes(pub i32);
impl ErrorCodes {
pub const PARSE_ERROR: i32 = -32700;
pub const INVALID_REQUEST: i32 = -32600;
pub const METHOD_NOT_FOUND: i32 = -32601;
pub const INVALID_PARAMS: i32 = -32602;
pub const INTERNAL_ERROR: i32 = -32603;
pub const SERVER_NOT_INITIALIZED: i32 = -32002;
pub const UNKNOWN_ERROR_CODE: i32 = -32001;
}
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct LSPErrorCodes(pub i32);
impl LSPErrorCodes {
pub const REQUEST_FAILED: i32 = -32803;
pub const SERVER_CANCELLED: i32 = -32802;
pub const CONTENT_MODIFIED: i32 = -32801;
pub const REQUEST_CANCELLED: i32 = -32800;
}
///A set of predefined range kinds.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct FoldingRangeKind(pub String);
impl FoldingRangeKind {
pub const COMMENT: &'static str = "comment";
pub const IMPORTS: &'static str = "imports";
pub const REGION: &'static str = "region";
}
///A symbol kind.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum SymbolKind {
File,
Module,
Namespace,
Package,
Class,
Method,
Property,
Field,
Constructor,
Enum,
Interface,
Function,
Variable,
Constant,
String,
Number,
Boolean,
Array,
Object,
Key,
Null,
EnumMember,
Struct,
Event,
Operator,
TypeParameter,
}
impl serde::Serialize for SymbolKind {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::File => serializer.serialize_i64(1i64),
Self::Module => serializer.serialize_i64(2i64),
Self::Namespace => serializer.serialize_i64(3i64),
Self::Package => serializer.serialize_i64(4i64),
Self::Class => serializer.serialize_i64(5i64),
Self::Method => serializer.serialize_i64(6i64),
Self::Property => serializer.serialize_i64(7i64),
Self::Field => serializer.serialize_i64(8i64),
Self::Constructor => serializer.serialize_i64(9i64),
Self::Enum => serializer.serialize_i64(10i64),
Self::Interface => serializer.serialize_i64(11i64),
Self::Function => serializer.serialize_i64(12i64),
Self::Variable => serializer.serialize_i64(13i64),
Self::Constant => serializer.serialize_i64(14i64),
Self::String => serializer.serialize_i64(15i64),
Self::Number => serializer.serialize_i64(16i64),
Self::Boolean => serializer.serialize_i64(17i64),
Self::Array => serializer.serialize_i64(18i64),
Self::Object => serializer.serialize_i64(19i64),
Self::Key => serializer.serialize_i64(20i64),
Self::Null => serializer.serialize_i64(21i64),
Self::EnumMember => serializer.serialize_i64(22i64),
Self::Struct => serializer.serialize_i64(23i64),
Self::Event => serializer.serialize_i64(24i64),
Self::Operator => serializer.serialize_i64(25i64),
Self::TypeParameter => serializer.serialize_i64(26i64),
}
}
}
impl<'de> serde::Deserialize<'de> for SymbolKind {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = SymbolKind;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(SymbolKind::File),
2i64 => Ok(SymbolKind::Module),
3i64 => Ok(SymbolKind::Namespace),
4i64 => Ok(SymbolKind::Package),
5i64 => Ok(SymbolKind::Class),
6i64 => Ok(SymbolKind::Method),
7i64 => Ok(SymbolKind::Property),
8i64 => Ok(SymbolKind::Field),
9i64 => Ok(SymbolKind::Constructor),
10i64 => Ok(SymbolKind::Enum),
11i64 => Ok(SymbolKind::Interface),
12i64 => Ok(SymbolKind::Function),
13i64 => Ok(SymbolKind::Variable),
14i64 => Ok(SymbolKind::Constant),
15i64 => Ok(SymbolKind::String),
16i64 => Ok(SymbolKind::Number),
17i64 => Ok(SymbolKind::Boolean),
18i64 => Ok(SymbolKind::Array),
19i64 => Ok(SymbolKind::Object),
20i64 => Ok(SymbolKind::Key),
21i64 => Ok(SymbolKind::Null),
22i64 => Ok(SymbolKind::EnumMember),
23i64 => Ok(SymbolKind::Struct),
24i64 => Ok(SymbolKind::Event),
25i64 => Ok(SymbolKind::Operator),
26i64 => Ok(SymbolKind::TypeParameter),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/**Symbol tags are extra annotations that tweak the rendering of a symbol.
@since 3.16*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum SymbolTag {
///Render a symbol as obsolete, usually using a strike-out.
Deprecated,
}
impl serde::Serialize for SymbolTag {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Deprecated => serializer.serialize_i64(1i64),
}
}
}
impl<'de> serde::Deserialize<'de> for SymbolTag {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = SymbolTag;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(SymbolTag::Deprecated),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/**Moniker uniqueness level to define scope of the moniker.
@since 3.16.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum UniquenessLevel {
///The moniker is only unique inside a document
#[serde(rename = "document")]
Document,
///The moniker is unique inside a project for which a dump got created
#[serde(rename = "project")]
Project,
///The moniker is unique inside the group to which a project belongs
#[serde(rename = "group")]
Group,
///The moniker is unique inside the moniker scheme.
#[serde(rename = "scheme")]
Scheme,
///The moniker is globally unique
#[serde(rename = "global")]
Global,
}
/**The moniker kind.
@since 3.16.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum MonikerKind {
///The moniker represent a symbol that is imported into a project
#[serde(rename = "import")]
Import,
///The moniker represents a symbol that is exported from a project
#[serde(rename = "export")]
Export,
/**The moniker represents a symbol that is local to a project (e.g. a local
variable of a function, a class not visible outside the project, ...)*/
#[serde(rename = "local")]
Local,
}
/**Inlay hint kinds.
@since 3.17.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum InlayHintKind {
///An inlay hint that for a type annotation.
Type,
///An inlay hint that is for a parameter.
Parameter,
}
impl serde::Serialize for InlayHintKind {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Type => serializer.serialize_i64(1i64),
Self::Parameter => serializer.serialize_i64(2i64),
}
}
}
impl<'de> serde::Deserialize<'de> for InlayHintKind {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = InlayHintKind;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(InlayHintKind::Type),
2i64 => Ok(InlayHintKind::Parameter),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
///The message type
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum MessageType {
///An error message.
Error,
///A warning message.
Warning,
///An information message.
Info,
///A log message.
Log,
/**A debug message.
@since 3.18.0*/
Debug,
}
impl serde::Serialize for MessageType {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Error => serializer.serialize_i64(1i64),
Self::Warning => serializer.serialize_i64(2i64),
Self::Info => serializer.serialize_i64(3i64),
Self::Log => serializer.serialize_i64(4i64),
Self::Debug => serializer.serialize_i64(5i64),
}
}
}
impl<'de> serde::Deserialize<'de> for MessageType {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = MessageType;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(MessageType::Error),
2i64 => Ok(MessageType::Warning),
3i64 => Ok(MessageType::Info),
4i64 => Ok(MessageType::Log),
5i64 => Ok(MessageType::Debug),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/**Defines how the host (editor) should sync
document changes to the language server.*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum TextDocumentSyncKind {
///Documents should not be synced at all.
None,
/**Documents are synced by always sending the full content
of the document.*/
Full,
/**Documents are synced by sending the full content on open.
After that only incremental updates to the document are
send.*/
Incremental,
}
impl serde::Serialize for TextDocumentSyncKind {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::None => serializer.serialize_i64(0i64),
Self::Full => serializer.serialize_i64(1i64),
Self::Incremental => serializer.serialize_i64(2i64),
}
}
}
impl<'de> serde::Deserialize<'de> for TextDocumentSyncKind {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = TextDocumentSyncKind;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
0i64 => Ok(TextDocumentSyncKind::None),
1i64 => Ok(TextDocumentSyncKind::Full),
2i64 => Ok(TextDocumentSyncKind::Incremental),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
///Represents reasons why a text document is saved.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum TextDocumentSaveReason {
/**Manually triggered, e.g. by the user pressing save, by starting debugging,
or by an API call.*/
Manual,
///Automatic after a delay.
AfterDelay,
///When the editor lost focus.
FocusOut,
}
impl serde::Serialize for TextDocumentSaveReason {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Manual => serializer.serialize_i64(1i64),
Self::AfterDelay => serializer.serialize_i64(2i64),
Self::FocusOut => serializer.serialize_i64(3i64),
}
}
}
impl<'de> serde::Deserialize<'de> for TextDocumentSaveReason {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = TextDocumentSaveReason;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(TextDocumentSaveReason::Manual),
2i64 => Ok(TextDocumentSaveReason::AfterDelay),
3i64 => Ok(TextDocumentSaveReason::FocusOut),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
///The kind of a completion entry.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum CompletionItemKind {
Text,
Method,
Function,
Constructor,
Field,
Variable,
Class,
Interface,
Module,
Property,
Unit,
Value,
Enum,
Keyword,
Snippet,
Color,
File,
Reference,
Folder,
EnumMember,
Constant,
Struct,
Event,
Operator,
TypeParameter,
}
impl serde::Serialize for CompletionItemKind {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Text => serializer.serialize_i64(1i64),
Self::Method => serializer.serialize_i64(2i64),
Self::Function => serializer.serialize_i64(3i64),
Self::Constructor => serializer.serialize_i64(4i64),
Self::Field => serializer.serialize_i64(5i64),
Self::Variable => serializer.serialize_i64(6i64),
Self::Class => serializer.serialize_i64(7i64),
Self::Interface => serializer.serialize_i64(8i64),
Self::Module => serializer.serialize_i64(9i64),
Self::Property => serializer.serialize_i64(10i64),
Self::Unit => serializer.serialize_i64(11i64),
Self::Value => serializer.serialize_i64(12i64),
Self::Enum => serializer.serialize_i64(13i64),
Self::Keyword => serializer.serialize_i64(14i64),
Self::Snippet => serializer.serialize_i64(15i64),
Self::Color => serializer.serialize_i64(16i64),
Self::File => serializer.serialize_i64(17i64),
Self::Reference => serializer.serialize_i64(18i64),
Self::Folder => serializer.serialize_i64(19i64),
Self::EnumMember => serializer.serialize_i64(20i64),
Self::Constant => serializer.serialize_i64(21i64),
Self::Struct => serializer.serialize_i64(22i64),
Self::Event => serializer.serialize_i64(23i64),
Self::Operator => serializer.serialize_i64(24i64),
Self::TypeParameter => serializer.serialize_i64(25i64),
}
}
}
impl<'de> serde::Deserialize<'de> for CompletionItemKind {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = CompletionItemKind;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(CompletionItemKind::Text),
2i64 => Ok(CompletionItemKind::Method),
3i64 => Ok(CompletionItemKind::Function),
4i64 => Ok(CompletionItemKind::Constructor),
5i64 => Ok(CompletionItemKind::Field),
6i64 => Ok(CompletionItemKind::Variable),
7i64 => Ok(CompletionItemKind::Class),
8i64 => Ok(CompletionItemKind::Interface),
9i64 => Ok(CompletionItemKind::Module),
10i64 => Ok(CompletionItemKind::Property),
11i64 => Ok(CompletionItemKind::Unit),
12i64 => Ok(CompletionItemKind::Value),
13i64 => Ok(CompletionItemKind::Enum),
14i64 => Ok(CompletionItemKind::Keyword),
15i64 => Ok(CompletionItemKind::Snippet),
16i64 => Ok(CompletionItemKind::Color),
17i64 => Ok(CompletionItemKind::File),
18i64 => Ok(CompletionItemKind::Reference),
19i64 => Ok(CompletionItemKind::Folder),
20i64 => Ok(CompletionItemKind::EnumMember),
21i64 => Ok(CompletionItemKind::Constant),
22i64 => Ok(CompletionItemKind::Struct),
23i64 => Ok(CompletionItemKind::Event),
24i64 => Ok(CompletionItemKind::Operator),
25i64 => Ok(CompletionItemKind::TypeParameter),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/**Completion item tags are extra annotations that tweak the rendering of a completion
item.
@since 3.15.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum CompletionItemTag {
///Render a completion as obsolete, usually using a strike-out.
Deprecated,
}
impl serde::Serialize for CompletionItemTag {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Deprecated => serializer.serialize_i64(1i64),
}
}
}
impl<'de> serde::Deserialize<'de> for CompletionItemTag {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = CompletionItemTag;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(CompletionItemTag::Deprecated),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/**Defines whether the insert text in a completion item should be interpreted as
plain text or a snippet.*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum InsertTextFormat {
///The primary text to be inserted is treated as a plain string.
PlainText,
/**The primary text to be inserted is treated as a snippet.
A snippet can define tab stops and placeholders with `$1`, `$2`
and `${3:foo}`. `$0` defines the final tab stop, it defaults to
the end of the snippet. Placeholders with equal identifiers are linked,
that is typing in one will update others too.
See also: https://microsoft.github.io/language-server-protocol/specifications/specification-current/#snippet_syntax*/
Snippet,
}
impl serde::Serialize for InsertTextFormat {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::PlainText => serializer.serialize_i64(1i64),
Self::Snippet => serializer.serialize_i64(2i64),
}
}
}
impl<'de> serde::Deserialize<'de> for InsertTextFormat {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = InsertTextFormat;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(InsertTextFormat::PlainText),
2i64 => Ok(InsertTextFormat::Snippet),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/**How whitespace and indentation is handled during completion
item insertion.
@since 3.16.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum InsertTextMode {
/**The insertion or replace strings is taken as it is. If the
value is multi line the lines below the cursor will be
inserted using the indentation defined in the string value.
The client will not apply any kind of adjustments to the
string.*/
AsIs,
/**The editor adjusts leading whitespace of new lines so that
they match the indentation up to the cursor of the line for
which the item is accepted.
Consider a line like this: <2tabs><cursor><3tabs>foo. Accepting a
multi line completion item is indented using 2 tabs and all
following lines inserted will be indented using 2 tabs as well.*/
AdjustIndentation,
}
impl serde::Serialize for InsertTextMode {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::AsIs => serializer.serialize_i64(1i64),
Self::AdjustIndentation => serializer.serialize_i64(2i64),
}
}
}
impl<'de> serde::Deserialize<'de> for InsertTextMode {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = InsertTextMode;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(InsertTextMode::AsIs),
2i64 => Ok(InsertTextMode::AdjustIndentation),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
///A document highlight kind.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum DocumentHighlightKind {
///A textual occurrence.
Text,
///Read-access of a symbol, like reading a variable.
Read,
///Write-access of a symbol, like writing to a variable.
Write,
}
impl serde::Serialize for DocumentHighlightKind {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Text => serializer.serialize_i64(1i64),
Self::Read => serializer.serialize_i64(2i64),
Self::Write => serializer.serialize_i64(3i64),
}
}
}
impl<'de> serde::Deserialize<'de> for DocumentHighlightKind {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = DocumentHighlightKind;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(DocumentHighlightKind::Text),
2i64 => Ok(DocumentHighlightKind::Read),
3i64 => Ok(DocumentHighlightKind::Write),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
///A set of predefined code action kinds
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct CodeActionKind(pub String);
impl CodeActionKind {
pub const EMPTY: &'static str = "";
pub const QUICK_FIX: &'static str = "quickfix";
pub const REFACTOR: &'static str = "refactor";
pub const REFACTOR_EXTRACT: &'static str = "refactor.extract";
pub const REFACTOR_INLINE: &'static str = "refactor.inline";
pub const REFACTOR_MOVE: &'static str = "refactor.move";
pub const REFACTOR_REWRITE: &'static str = "refactor.rewrite";
pub const SOURCE: &'static str = "source";
pub const SOURCE_ORGANIZE_IMPORTS: &'static str = "source.organizeImports";
pub const SOURCE_FIX_ALL: &'static str = "source.fixAll";
pub const NOTEBOOK: &'static str = "notebook";
}
/**Code action tags are extra annotations that tweak the behavior of a code action.
@since 3.18.0 - proposed*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum CodeActionTag {
///Marks the code action as LLM-generated.
LlmGenerated,
}
impl serde::Serialize for CodeActionTag {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::LlmGenerated => serializer.serialize_i64(1i64),
}
}
}
impl<'de> serde::Deserialize<'de> for CodeActionTag {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = CodeActionTag;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(CodeActionTag::LlmGenerated),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum TraceValue {
///Turn tracing off.
#[serde(rename = "off")]
Off,
///Trace messages only.
#[serde(rename = "messages")]
Messages,
///Verbose message tracing.
#[serde(rename = "verbose")]
Verbose,
}
/**Describes the content type that a client supports in various
result literals like `Hover`, `ParameterInfo` or `CompletionItem`.
Please note that `MarkupKinds` must not start with a `$`. This kinds
are reserved for internal usage.*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum MarkupKind {
///Plain text is supported as a content format
#[serde(rename = "plaintext")]
PlainText,
///Markdown is supported as a content format
#[serde(rename = "markdown")]
Markdown,
}
/**Predefined Language kinds
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct LanguageKind(pub String);
impl LanguageKind {
pub const ABAP: &'static str = "abap";
pub const WINDOWS_BAT: &'static str = "bat";
pub const BIB_TE_X: &'static str = "bibtex";
pub const CLOJURE: &'static str = "clojure";
pub const COFFEESCRIPT: &'static str = "coffeescript";
pub const C: &'static str = "c";
pub const CPP: &'static str = "cpp";
pub const C_SHARP: &'static str = "csharp";
pub const CSS: &'static str = "css";
pub const D: &'static str = "d";
pub const DELPHI: &'static str = "pascal";
pub const DIFF: &'static str = "diff";
pub const DART: &'static str = "dart";
pub const DOCKERFILE: &'static str = "dockerfile";
pub const ELIXIR: &'static str = "elixir";
pub const ERLANG: &'static str = "erlang";
pub const F_SHARP: &'static str = "fsharp";
pub const GIT_COMMIT: &'static str = "git-commit";
pub const GIT_REBASE: &'static str = "git-rebase";
pub const GO: &'static str = "go";
pub const GROOVY: &'static str = "groovy";
pub const HANDLEBARS: &'static str = "handlebars";
pub const HASKELL: &'static str = "haskell";
pub const HTML: &'static str = "html";
pub const INI: &'static str = "ini";
pub const JAVA: &'static str = "java";
pub const JAVA_SCRIPT: &'static str = "javascript";
pub const JAVA_SCRIPT_REACT: &'static str = "javascriptreact";
pub const JSON: &'static str = "json";
pub const LA_TE_X: &'static str = "latex";
pub const LESS: &'static str = "less";
pub const LUA: &'static str = "lua";
pub const MAKEFILE: &'static str = "makefile";
pub const MARKDOWN: &'static str = "markdown";
pub const OBJECTIVE_C: &'static str = "objective-c";
pub const OBJECTIVE_CPP: &'static str = "objective-cpp";
pub const PASCAL: &'static str = "pascal";
pub const PERL: &'static str = "perl";
pub const PERL6: &'static str = "perl6";
pub const PHP: &'static str = "php";
pub const PLAINTEXT: &'static str = "plaintext";
pub const POWERSHELL: &'static str = "powershell";
pub const PUG: &'static str = "jade";
pub const PYTHON: &'static str = "python";
pub const R: &'static str = "r";
pub const RAZOR: &'static str = "razor";
pub const RUBY: &'static str = "ruby";
pub const RUST: &'static str = "rust";
pub const SCSS: &'static str = "scss";
pub const SASS: &'static str = "sass";
pub const SCALA: &'static str = "scala";
pub const SHADER_LAB: &'static str = "shaderlab";
pub const SHELL_SCRIPT: &'static str = "shellscript";
pub const SQL: &'static str = "sql";
pub const SWIFT: &'static str = "swift";
pub const TYPE_SCRIPT: &'static str = "typescript";
pub const TYPE_SCRIPT_REACT: &'static str = "typescriptreact";
pub const TE_X: &'static str = "tex";
pub const VISUAL_BASIC: &'static str = "vb";
pub const XML: &'static str = "xml";
pub const XSL: &'static str = "xsl";
pub const YAML: &'static str = "yaml";
}
/**Describes how an {@link InlineCompletionItemProvider inline completion provider} was triggered.
@since 3.18.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum InlineCompletionTriggerKind {
///Completion was triggered explicitly by a user gesture.
Invoked,
///Completion was triggered automatically while editing.
Automatic,
}
impl serde::Serialize for InlineCompletionTriggerKind {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Invoked => serializer.serialize_i64(1i64),
Self::Automatic => serializer.serialize_i64(2i64),
}
}
}
impl<'de> serde::Deserialize<'de> for InlineCompletionTriggerKind {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = InlineCompletionTriggerKind;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(InlineCompletionTriggerKind::Invoked),
2i64 => Ok(InlineCompletionTriggerKind::Automatic),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/**A set of predefined position encoding kinds.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct PositionEncodingKind(pub String);
impl PositionEncodingKind {
pub const UTF8: &'static str = "utf-8";
pub const UTF16: &'static str = "utf-16";
pub const UTF32: &'static str = "utf-32";
}
///The file event type
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum FileChangeType {
///The file got created.
Created,
///The file got changed.
Changed,
///The file got deleted.
Deleted,
}
impl serde::Serialize for FileChangeType {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Created => serializer.serialize_i64(1i64),
Self::Changed => serializer.serialize_i64(2i64),
Self::Deleted => serializer.serialize_i64(3i64),
}
}
}
impl<'de> serde::Deserialize<'de> for FileChangeType {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = FileChangeType;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(FileChangeType::Created),
2i64 => Ok(FileChangeType::Changed),
3i64 => Ok(FileChangeType::Deleted),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct WatchKind(pub u32);
impl WatchKind {
pub const CREATE: u32 = 1;
pub const CHANGE: u32 = 2;
pub const DELETE: u32 = 4;
}
///The diagnostic's severity.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum DiagnosticSeverity {
///Reports an error.
Error,
///Reports a warning.
Warning,
///Reports an information.
Information,
///Reports a hint.
Hint,
}
impl serde::Serialize for DiagnosticSeverity {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Error => serializer.serialize_i64(1i64),
Self::Warning => serializer.serialize_i64(2i64),
Self::Information => serializer.serialize_i64(3i64),
Self::Hint => serializer.serialize_i64(4i64),
}
}
}
impl<'de> serde::Deserialize<'de> for DiagnosticSeverity {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = DiagnosticSeverity;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(DiagnosticSeverity::Error),
2i64 => Ok(DiagnosticSeverity::Warning),
3i64 => Ok(DiagnosticSeverity::Information),
4i64 => Ok(DiagnosticSeverity::Hint),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/**The diagnostic tags.
@since 3.15.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum DiagnosticTag {
/**Unused or unnecessary code.
Clients are allowed to render diagnostics with this tag faded out instead of having
an error squiggle.*/
Unnecessary,
/**Deprecated or obsolete code.
Clients are allowed to rendered diagnostics with this tag strike through.*/
Deprecated,
}
impl serde::Serialize for DiagnosticTag {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Unnecessary => serializer.serialize_i64(1i64),
Self::Deprecated => serializer.serialize_i64(2i64),
}
}
}
impl<'de> serde::Deserialize<'de> for DiagnosticTag {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = DiagnosticTag;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(DiagnosticTag::Unnecessary),
2i64 => Ok(DiagnosticTag::Deprecated),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
///How a completion was triggered
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum CompletionTriggerKind {
/**Completion was triggered by typing an identifier (24x7 code
complete), manual invocation (e.g Ctrl+Space) or via API.*/
Invoked,
/**Completion was triggered by a trigger character specified by
the `triggerCharacters` properties of the `CompletionRegistrationOptions`.*/
TriggerCharacter,
///Completion was re-triggered as current completion list is incomplete
TriggerForIncompleteCompletions,
}
impl serde::Serialize for CompletionTriggerKind {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Invoked => serializer.serialize_i64(1i64),
Self::TriggerCharacter => serializer.serialize_i64(2i64),
Self::TriggerForIncompleteCompletions => serializer.serialize_i64(3i64),
}
}
}
impl<'de> serde::Deserialize<'de> for CompletionTriggerKind {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = CompletionTriggerKind;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(CompletionTriggerKind::Invoked),
2i64 => Ok(CompletionTriggerKind::TriggerCharacter),
3i64 => Ok(CompletionTriggerKind::TriggerForIncompleteCompletions),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/**Defines how values from a set of defaults and an individual item will be
merged.
@since 3.18.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ApplyKind {
/**The value from the individual item (if provided and not `null`) will be
used instead of the default.*/
Replace,
/**The value from the item will be merged with the default.
The specific rules for mergeing values are defined against each field
that supports merging.*/
Merge,
}
impl serde::Serialize for ApplyKind {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Replace => serializer.serialize_i64(1i64),
Self::Merge => serializer.serialize_i64(2i64),
}
}
}
impl<'de> serde::Deserialize<'de> for ApplyKind {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = ApplyKind;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(ApplyKind::Replace),
2i64 => Ok(ApplyKind::Merge),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/**How a signature help was triggered.
@since 3.15.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum SignatureHelpTriggerKind {
///Signature help was invoked manually by the user or by a command.
Invoked,
///Signature help was triggered by a trigger character.
TriggerCharacter,
///Signature help was triggered by the cursor moving or by the document content changing.
ContentChange,
}
impl serde::Serialize for SignatureHelpTriggerKind {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Invoked => serializer.serialize_i64(1i64),
Self::TriggerCharacter => serializer.serialize_i64(2i64),
Self::ContentChange => serializer.serialize_i64(3i64),
}
}
}
impl<'de> serde::Deserialize<'de> for SignatureHelpTriggerKind {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = SignatureHelpTriggerKind;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(SignatureHelpTriggerKind::Invoked),
2i64 => Ok(SignatureHelpTriggerKind::TriggerCharacter),
3i64 => Ok(SignatureHelpTriggerKind::ContentChange),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/**The reason why code actions were requested.
@since 3.17.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum CodeActionTriggerKind {
///Code actions were explicitly requested by the user or by an extension.
Invoked,
/**Code actions were requested automatically.
This typically happens when current selection in a file changes, but can
also be triggered when file content changes.*/
Automatic,
}
impl serde::Serialize for CodeActionTriggerKind {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Invoked => serializer.serialize_i64(1i64),
Self::Automatic => serializer.serialize_i64(2i64),
}
}
}
impl<'de> serde::Deserialize<'de> for CodeActionTriggerKind {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = CodeActionTriggerKind;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(CodeActionTriggerKind::Invoked),
2i64 => Ok(CodeActionTriggerKind::Automatic),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/**A pattern kind describing if a glob pattern matches a file a folder or
both.
@since 3.16.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum FileOperationPatternKind {
///The pattern matches a file only.
#[serde(rename = "file")]
File,
///The pattern matches a folder only.
#[serde(rename = "folder")]
Folder,
}
/**A notebook cell kind.
@since 3.17.0*/
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum NotebookCellKind {
///A markup-cell is formatted source that is used for display.
Markup,
///A code-cell is source code.
Code,
}
impl serde::Serialize for NotebookCellKind {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Markup => serializer.serialize_i64(1i64),
Self::Code => serializer.serialize_i64(2i64),
}
}
}
impl<'de> serde::Deserialize<'de> for NotebookCellKind {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = NotebookCellKind;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(NotebookCellKind::Markup),
2i64 => Ok(NotebookCellKind::Code),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum ResourceOperationKind {
///Supports creating new files and folders.
#[serde(rename = "create")]
Create,
///Supports renaming existing files and folders.
#[serde(rename = "rename")]
Rename,
///Supports deleting existing files and folders.
#[serde(rename = "delete")]
Delete,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum FailureHandlingKind {
/**Applying the workspace change is simply aborted if one of the changes provided
fails. All operations executed before the failing operation stay executed.*/
#[serde(rename = "abort")]
Abort,
/**All operations are executed transactional. That means they either all
succeed or no changes at all are applied to the workspace.*/
#[serde(rename = "transactional")]
Transactional,
/**If the workspace edit contains only textual file changes they are executed transactional.
If resource changes (create, rename or delete file) are part of the change the failure
handling strategy is abort.*/
#[serde(rename = "textOnlyTransactional")]
TextOnlyTransactional,
/**The client tries to undo the operations already executed. But there is no
guarantee that this is succeeding.*/
#[serde(rename = "undo")]
Undo,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum PrepareSupportDefaultBehavior {
/**The client's default behavior is to select the identifier
according the to language's syntax rule.*/
Identifier,
}
impl serde::Serialize for PrepareSupportDefaultBehavior {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Identifier => serializer.serialize_i64(1i64),
}
}
}
impl<'de> serde::Deserialize<'de> for PrepareSupportDefaultBehavior {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = PrepareSupportDefaultBehavior;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::fmt::Result {
formatter.write_str("a number representing the enum")
}
fn visit_i64<E>(self, value: i64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
match value {
1i64 => Ok(PrepareSupportDefaultBehavior::Identifier),
_ => Err(E::custom(format!("unknown variant: {}", value))),
}
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum TokenFormat {
#[serde(rename = "relative")]
Relative,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ImplementationParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
}
/**Represents a location inside a resource, such as a line
inside a text file.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Location {
pub uri: DocumentUri,
pub range: Range,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ImplementationRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub implementation_options_base: ImplementationOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TypeDefinitionParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TypeDefinitionRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub type_definition_options_base: TypeDefinitionOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
///A workspace folder inside a client.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceFolder {
///The associated URI for this workspace folder.
pub uri: URI,
/**The name of the workspace folder. Used to refer to this
workspace folder in the user interface.*/
pub name: String,
}
///The parameters of a `workspace/didChangeWorkspaceFolders` notification.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidChangeWorkspaceFoldersParams {
///The actual workspace folder change event.
pub event: WorkspaceFoldersChangeEvent,
}
///The parameters of a configuration request.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ConfigurationParams {
pub items: Vec<ConfigurationItem>,
}
///Parameters for a {@link DocumentColorRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentColorParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
}
///Represents a color range from a document.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ColorInformation {
///The range in the document where this color appears.
pub range: Range,
///The actual color value for this color range.
pub color: Color,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentColorRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub document_color_options_base: DocumentColorOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
///Parameters for a {@link ColorPresentationRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ColorPresentationParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
///The color to request presentations for.
pub color: Color,
///The range where the color would be inserted. Serves as a context.
pub range: Range,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ColorPresentation {
/**The label of this color presentation. It will be shown on the color
picker header. By default this is also the text that is inserted when selecting
this color presentation.*/
pub label: String,
/**An {@link TextEdit edit} which is applied to a document when selecting
this presentation for the color. When `falsy` the {@link ColorPresentation.label label}
is used.*/
#[serde(rename = "textEdit")]
#[serde(default)]
pub text_edit: Option<TextEdit>,
/**An optional array of additional {@link TextEdit text edits} that are applied when
selecting this color presentation. Edits must not overlap with the main {@link ColorPresentation.textEdit edit} nor with themselves.*/
#[serde(rename = "additionalTextEdits")]
#[serde(default)]
pub additional_text_edits: Option<Vec<TextEdit>>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkDoneProgressOptions {
#[serde(rename = "workDoneProgress")]
#[serde(default)]
pub work_done_progress: Option<bool>,
}
///General text document registration options.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentRegistrationOptions {
/**A document selector to identify the scope of the registration. If set to null
the document selector provided on the client side will be used.*/
#[serde(rename = "documentSelector")]
pub document_selector: Option<DocumentSelector>,
}
///Parameters for a {@link FoldingRangeRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FoldingRangeParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
}
/**Represents a folding range. To be valid, start and end line must be bigger than zero and smaller
than the number of lines in the document. Clients are free to ignore invalid ranges.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FoldingRange {
/**The zero-based start line of the range to fold. The folded area starts after the line's last character.
To be valid, the end must be zero or larger and smaller than the number of lines in the document.*/
#[serde(rename = "startLine")]
pub start_line: Uinteger,
///The zero-based character offset from where the folded range starts. If not defined, defaults to the length of the start line.
#[serde(rename = "startCharacter")]
#[serde(default)]
pub start_character: Option<Uinteger>,
/**The zero-based end line of the range to fold. The folded area ends with the line's last character.
To be valid, the end must be zero or larger and smaller than the number of lines in the document.*/
#[serde(rename = "endLine")]
pub end_line: Uinteger,
///The zero-based character offset before the folded range ends. If not defined, defaults to the length of the end line.
#[serde(rename = "endCharacter")]
#[serde(default)]
pub end_character: Option<Uinteger>,
/**Describes the kind of the folding range such as 'comment' or 'region'. The kind
is used to categorize folding ranges and used by commands like 'Fold all comments'.
See {@link FoldingRangeKind} for an enumeration of standardized kinds.*/
#[serde(default)]
pub kind: Option<FoldingRangeKind>,
/**The text that the client should show when the specified range is
collapsed. If not defined or not supported by the client, a default
will be chosen by the client.
@since 3.17.0*/
#[serde(rename = "collapsedText")]
#[serde(default)]
pub collapsed_text: Option<String>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FoldingRangeRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub folding_range_options_base: FoldingRangeOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DeclarationParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DeclarationRegistrationOptions {
#[serde(flatten)]
pub declaration_options_base: DeclarationOptions,
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
///A parameter literal used in selection range requests.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SelectionRangeParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
///The positions inside the text document.
pub positions: Vec<Position>,
}
/**A selection range represents a part of a selection hierarchy. A selection range
may have a parent selection range that contains it.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SelectionRange {
///The {@link Range range} of this selection range.
pub range: Range,
///The parent selection range containing this range. Therefore `parent.range` must contain `this.range`.
#[serde(default)]
pub parent: Option<Box<SelectionRange>>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SelectionRangeRegistrationOptions {
#[serde(flatten)]
pub selection_range_options_base: SelectionRangeOptions,
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkDoneProgressCreateParams {
///The token to be used to report progress.
pub token: ProgressToken,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkDoneProgressCancelParams {
///The token to be used to report progress.
pub token: ProgressToken,
}
/**The parameter of a `textDocument/prepareCallHierarchy` request.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CallHierarchyPrepareParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
}
/**Represents programming constructs like functions or constructors in the context
of call hierarchy.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CallHierarchyItem {
///The name of this item.
pub name: String,
///The kind of this item.
pub kind: SymbolKind,
///Tags for this item.
#[serde(default)]
pub tags: Option<Vec<SymbolTag>>,
///More detail for this item, e.g. the signature of a function.
#[serde(default)]
pub detail: Option<String>,
///The resource identifier of this item.
pub uri: DocumentUri,
///The range enclosing this symbol not including leading/trailing whitespace but everything else, e.g. comments and code.
pub range: Range,
/**The range that should be selected and revealed when this symbol is being picked, e.g. the name of a function.
Must be contained by the {@link CallHierarchyItem.range `range`}.*/
#[serde(rename = "selectionRange")]
pub selection_range: Range,
/**A data entry field that is preserved between a call hierarchy prepare and
incoming calls or outgoing calls requests.*/
#[serde(default)]
pub data: Option<LSPAny>,
}
/**Call hierarchy options used during static or dynamic registration.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CallHierarchyRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub call_hierarchy_options_base: CallHierarchyOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
/**The parameter of a `callHierarchy/incomingCalls` request.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CallHierarchyIncomingCallsParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
pub item: CallHierarchyItem,
}
/**Represents an incoming call, e.g. a caller of a method or constructor.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CallHierarchyIncomingCall {
///The item that makes the call.
pub from: CallHierarchyItem,
/**The ranges at which the calls appear. This is relative to the caller
denoted by {@link CallHierarchyIncomingCall.from `this.from`}.*/
#[serde(rename = "fromRanges")]
pub from_ranges: Vec<Range>,
}
/**The parameter of a `callHierarchy/outgoingCalls` request.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CallHierarchyOutgoingCallsParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
pub item: CallHierarchyItem,
}
/**Represents an outgoing call, e.g. calling a getter from a method or a method from a constructor etc.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CallHierarchyOutgoingCall {
///The item that is called.
pub to: CallHierarchyItem,
/**The range at which this item is called. This is the range relative to the caller, e.g the item
passed to {@link CallHierarchyItemProvider.provideCallHierarchyOutgoingCalls `provideCallHierarchyOutgoingCalls`}
and not {@link CallHierarchyOutgoingCall.to `this.to`}.*/
#[serde(rename = "fromRanges")]
pub from_ranges: Vec<Range>,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokens {
/**An optional result id. If provided and clients support delta updating
the client will include the result id in the next semantic token request.
A server can then instead of computing all semantic tokens again simply
send a delta.*/
#[serde(rename = "resultId")]
#[serde(default)]
pub result_id: Option<String>,
///The actual tokens.
pub data: Vec<Uinteger>,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensPartialResult {
pub data: Vec<Uinteger>,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub semantic_tokens_options_base: SemanticTokensOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensDeltaParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
/**The result id of a previous response. The result Id can either point to a full response
or a delta response depending on what was received last.*/
#[serde(rename = "previousResultId")]
pub previous_result_id: String,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensDelta {
#[serde(rename = "resultId")]
#[serde(default)]
pub result_id: Option<String>,
///The semantic token edits to transform a previous result into a new result.
pub edits: Vec<SemanticTokensEdit>,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensDeltaPartialResult {
pub edits: Vec<SemanticTokensEdit>,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensRangeParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
///The range the semantic tokens are requested for.
pub range: Range,
}
/**Params to show a resource in the UI.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ShowDocumentParams {
///The uri to show.
pub uri: URI,
/**Indicates to show the resource in an external program.
To show, for example, `https://code.visualstudio.com/`
in the default WEB browser set `external` to `true`.*/
#[serde(default)]
pub external: Option<bool>,
/**An optional property to indicate whether the editor
showing the document should take focus or not.
Clients might ignore this property if an external
program is started.*/
#[serde(rename = "takeFocus")]
#[serde(default)]
pub take_focus: Option<bool>,
/**An optional selection range if the document is a text
document. Clients might ignore the property if an
external program is started or the file is not a text
file.*/
#[serde(default)]
pub selection: Option<Range>,
}
/**The result of a showDocument request.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ShowDocumentResult {
///A boolean indicating if the show was successful.
pub success: bool,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LinkedEditingRangeParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
}
/**The result of a linked editing range request.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LinkedEditingRanges {
/**A list of ranges that can be edited together. The ranges must have
identical length and contain identical text content. The ranges cannot overlap.*/
pub ranges: Vec<Range>,
/**An optional word pattern (regular expression) that describes valid contents for
the given ranges. If no pattern is provided, the client configuration's word
pattern will be used.*/
#[serde(rename = "wordPattern")]
#[serde(default)]
pub word_pattern: Option<String>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LinkedEditingRangeRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub linked_editing_range_options_base: LinkedEditingRangeOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
/**The parameters sent in notifications/requests for user-initiated creation of
files.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CreateFilesParams {
///An array of all files/folders created in this operation.
pub files: Vec<FileCreate>,
}
/**A workspace edit represents changes to many resources managed in the workspace. The edit
should either provide `changes` or `documentChanges`. If documentChanges are present
they are preferred over `changes` if the client can handle versioned document edits.
Since version 3.13.0 a workspace edit can contain resource operations as well. If resource
operations are present clients need to execute the operations in the order in which they
are provided. So a workspace edit for example can consist of the following two changes:
(1) a create file a.txt and (2) a text document edit which insert text into file a.txt.
An invalid sequence (e.g. (1) delete file a.txt and (2) insert text into file a.txt) will
cause failure of the operation. How the client recovers from the failure is described by
the client capability: `workspace.workspaceEdit.failureHandling`*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceEdit {
///Holds changes to existing resources.
#[serde(default)]
pub changes: Option<std::collections::BTreeMap<DocumentUri, Vec<TextEdit>>>,
/**Depending on the client capability `workspace.workspaceEdit.resourceOperations` document changes
are either an array of `TextDocumentEdit`s to express changes to n different text documents
where each text document edit addresses a specific version of a text document. Or it can contain
above `TextDocumentEdit`s mixed with create, rename and delete file / folder operations.
Whether a client supports versioned document edits is expressed via
`workspace.workspaceEdit.documentChanges` client capability.
If a client neither supports `documentChanges` nor `workspace.workspaceEdit.resourceOperations` then
only plain `TextEdit`s using the `changes` property are supported.*/
#[serde(rename = "documentChanges")]
#[serde(default)]
pub document_changes: Option<
Vec<CreateFileOrDeleteFileOrRenameFileOrTextDocumentEdit>,
>,
/**A map of change annotations that can be referenced in `AnnotatedTextEdit`s or create, rename and
delete file / folder operations.
Whether clients honor this property depends on the client capability `workspace.changeAnnotationSupport`.
@since 3.16.0*/
#[serde(rename = "changeAnnotations")]
#[serde(default)]
pub change_annotations: Option<
std::collections::BTreeMap<ChangeAnnotationIdentifier, ChangeAnnotation>,
>,
}
/**The options to register for file operations.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FileOperationRegistrationOptions {
///The actual filters.
pub filters: Vec<FileOperationFilter>,
}
/**The parameters sent in notifications/requests for user-initiated renames of
files.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RenameFilesParams {
/**An array of all files/folders renamed in this operation. When a folder is renamed, only
the folder will be included, and not its children.*/
pub files: Vec<FileRename>,
}
/**The parameters sent in notifications/requests for user-initiated deletes of
files.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DeleteFilesParams {
///An array of all files/folders deleted in this operation.
pub files: Vec<FileDelete>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MonikerParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
}
/**Moniker definition to match LSIF 0.5 moniker definition.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Moniker {
///The scheme of the moniker. For example tsc or .Net
pub scheme: String,
/**The identifier of the moniker. The value is opaque in LSIF however
schema owners are allowed to define the structure if they want.*/
pub identifier: String,
///The scope in which the moniker is unique
pub unique: UniquenessLevel,
///The moniker kind if known.
#[serde(default)]
pub kind: Option<MonikerKind>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MonikerRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub moniker_options_base: MonikerOptions,
}
/**The parameter of a `textDocument/prepareTypeHierarchy` request.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TypeHierarchyPrepareParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
}
///@since 3.17.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TypeHierarchyItem {
///The name of this item.
pub name: String,
///The kind of this item.
pub kind: SymbolKind,
///Tags for this item.
#[serde(default)]
pub tags: Option<Vec<SymbolTag>>,
///More detail for this item, e.g. the signature of a function.
#[serde(default)]
pub detail: Option<String>,
///The resource identifier of this item.
pub uri: DocumentUri,
/**The range enclosing this symbol not including leading/trailing whitespace
but everything else, e.g. comments and code.*/
pub range: Range,
/**The range that should be selected and revealed when this symbol is being
picked, e.g. the name of a function. Must be contained by the
{@link TypeHierarchyItem.range `range`}.*/
#[serde(rename = "selectionRange")]
pub selection_range: Range,
/**A data entry field that is preserved between a type hierarchy prepare and
supertypes or subtypes requests. It could also be used to identify the
type hierarchy in the server, helping improve the performance on
resolving supertypes and subtypes.*/
#[serde(default)]
pub data: Option<LSPAny>,
}
/**Type hierarchy options used during static or dynamic registration.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TypeHierarchyRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub type_hierarchy_options_base: TypeHierarchyOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
/**The parameter of a `typeHierarchy/supertypes` request.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TypeHierarchySupertypesParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
pub item: TypeHierarchyItem,
}
/**The parameter of a `typeHierarchy/subtypes` request.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TypeHierarchySubtypesParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
pub item: TypeHierarchyItem,
}
/**A parameter literal used in inline value requests.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineValueParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
///The document range for which inline values information will be returned.
pub range: Range,
#[doc = "Additional information about the context in which inline values information was\nrequested.\t */"]
pub context: InlineValueContext,
}
/**Inline value options used during static or dynamic registration.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineValueRegistrationOptions {
#[serde(flatten)]
pub inline_value_options_base: InlineValueOptions,
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
/**A parameter literal used in inlay hint requests.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlayHintParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
///The document range for which inlay hints should be computed.
pub range: Range,
}
/**Inlay hint information.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlayHint {
/**The position of this hint.
If multiple hints have the same position, they will be shown in the order
they appear in the response.*/
pub position: Position,
/**The label of this hint. A human readable string or an array of
InlayHintLabelPart label parts.
*Note* that neither the string nor the label part can be empty.*/
pub label: InlayHintLabelPartArrayOrString,
/**The kind of this hint. Can be omitted in which case the client
should fall back to a reasonable default.*/
#[serde(default)]
pub kind: Option<InlayHintKind>,
/**Optional text edits that are performed when accepting this inlay hint.
*Note* that edits are expected to change the document so that the inlay
hint (or its nearest variant) is now part of the document and the inlay
hint itself is now obsolete.*/
#[serde(rename = "textEdits")]
#[serde(default)]
pub text_edits: Option<Vec<TextEdit>>,
///The tooltip text when you hover over this item.
#[serde(default)]
pub tooltip: Option<MarkupContentOrString>,
/**Render padding before the hint.
Note: Padding should use the editor's background color, not the
background color of the hint itself. That means padding can be used
to visually align/separate an inlay hint.*/
#[serde(rename = "paddingLeft")]
#[serde(default)]
pub padding_left: Option<bool>,
/**Render padding after the hint.
Note: Padding should use the editor's background color, not the
background color of the hint itself. That means padding can be used
to visually align/separate an inlay hint.*/
#[serde(rename = "paddingRight")]
#[serde(default)]
pub padding_right: Option<bool>,
/**A data entry field that is preserved on an inlay hint between
a `textDocument/inlayHint` and a `inlayHint/resolve` request.*/
#[serde(default)]
pub data: Option<LSPAny>,
}
/**Inlay hint options used during static or dynamic registration.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlayHintRegistrationOptions {
#[serde(flatten)]
pub inlay_hint_options_base: InlayHintOptions,
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
/**Parameters of the document diagnostic request.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentDiagnosticParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
///The additional identifier provided during registration.
#[serde(default)]
pub identifier: Option<String>,
///The result id of a previous response if provided.
#[serde(rename = "previousResultId")]
#[serde(default)]
pub previous_result_id: Option<String>,
}
/**A partial result for a document diagnostic report.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentDiagnosticReportPartialResult {
#[serde(rename = "relatedDocuments")]
pub related_documents: std::collections::BTreeMap<
DocumentUri,
FullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport,
>,
}
/**Cancellation data returned from a diagnostic request.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DiagnosticServerCancellationData {
#[serde(rename = "retriggerRequest")]
pub retrigger_request: bool,
}
/**Diagnostic registration options.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DiagnosticRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub diagnostic_options_base: DiagnosticOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
/**Parameters of the workspace diagnostic request.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceDiagnosticParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The additional identifier provided during registration.
#[serde(default)]
pub identifier: Option<String>,
/**The currently known diagnostic reports with their
previous result ids.*/
#[serde(rename = "previousResultIds")]
pub previous_result_ids: Vec<PreviousResultId>,
}
/**A workspace diagnostic report.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceDiagnosticReport {
pub items: Vec<WorkspaceDocumentDiagnosticReport>,
}
/**A partial result for a workspace diagnostic report.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceDiagnosticReportPartialResult {
pub items: Vec<WorkspaceDocumentDiagnosticReport>,
}
/**The params sent in an open notebook document notification.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidOpenNotebookDocumentParams {
///The notebook document that got opened.
#[serde(rename = "notebookDocument")]
pub notebook_document: NotebookDocument,
/**The text documents that represent the content
of a notebook cell.*/
#[serde(rename = "cellTextDocuments")]
pub cell_text_documents: Vec<TextDocumentItem>,
}
/**Registration options specific to a notebook.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentSyncRegistrationOptions {
#[serde(flatten)]
pub notebook_document_sync_options_base: NotebookDocumentSyncOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
/**The params sent in a change notebook document notification.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidChangeNotebookDocumentParams {
/**The notebook document that did change. The version number points
to the version after all provided changes have been applied. If
only the text document content of a cell changes the notebook version
doesn't necessarily have to change.*/
#[serde(rename = "notebookDocument")]
pub notebook_document: VersionedNotebookDocumentIdentifier,
/**The actual changes to the notebook document.
The changes describe single state changes to the notebook document.
So if there are two changes c1 (at array index 0) and c2 (at array
index 1) for a notebook in state S then c1 moves the notebook from
S to S' and c2 from S' to S''. So c1 is computed on the state S and
c2 is computed on the state S'.
To mirror the content of a notebook using change events use the following approach:
- start with the same initial content
- apply the 'notebookDocument/didChange' notifications in the order you receive them.
- apply the `NotebookChangeEvent`s in a single notification in the order
you receive them.*/
pub change: NotebookDocumentChangeEvent,
}
/**The params sent in a save notebook document notification.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidSaveNotebookDocumentParams {
///The notebook document that got saved.
#[serde(rename = "notebookDocument")]
pub notebook_document: NotebookDocumentIdentifier,
}
/**The params sent in a close notebook document notification.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidCloseNotebookDocumentParams {
///The notebook document that got closed.
#[serde(rename = "notebookDocument")]
pub notebook_document: NotebookDocumentIdentifier,
/**The text documents that represent the content
of a notebook cell that got closed.*/
#[serde(rename = "cellTextDocuments")]
pub cell_text_documents: Vec<TextDocumentIdentifier>,
}
/**A parameter literal used in inline completion requests.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineCompletionParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
/**Additional information about the context in which inline completions were
requested.*/
pub context: InlineCompletionContext,
}
/**Represents a collection of {@link InlineCompletionItem inline completion items} to be presented in the editor.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineCompletionList {
///The inline completion items
pub items: Vec<InlineCompletionItem>,
}
/**An inline completion item represents a text snippet that is proposed inline to complete text that is being typed.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineCompletionItem {
///The text to replace the range with. Must be set.
#[serde(rename = "insertText")]
pub insert_text: StringOrStringValue,
///A text that is used to decide if this inline completion should be shown. When `falsy` the {@link InlineCompletionItem.insertText} is used.
#[serde(rename = "filterText")]
#[serde(default)]
pub filter_text: Option<String>,
///The range to replace. Must begin and end on the same line.
#[serde(default)]
pub range: Option<Range>,
///An optional {@link Command} that is executed *after* inserting this completion.
#[serde(default)]
pub command: Option<Command>,
}
/**Inline completion options used during static or dynamic registration.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineCompletionRegistrationOptions {
#[serde(flatten)]
pub inline_completion_options_base: InlineCompletionOptions,
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
/**Parameters for the `workspace/textDocumentContent` request.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentContentParams {
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
}
/**Result of the `workspace/textDocumentContent` request.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentContentResult {
/**The text content of the text document. Please note, that the content of
any subsequent open notifications for the text document might differ
from the returned content due to whitespace and line ending
normalizations done on the client*/
pub text: String,
}
/**Text document content provider registration options.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentContentRegistrationOptions {
#[serde(flatten)]
pub text_document_content_options_base: TextDocumentContentOptions,
#[serde(flatten)]
pub static_registration_options_mixin: StaticRegistrationOptions,
}
/**Parameters for the `workspace/textDocumentContent/refresh` request.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentContentRefreshParams {
///The uri of the text document to refresh.
pub uri: DocumentUri,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RegistrationParams {
pub registrations: Vec<Registration>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UnregistrationParams {
pub unregisterations: Vec<Unregistration>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InitializeParams {
#[serde(flatten)]
pub initialize_params_base: _InitializeParams,
#[serde(flatten)]
pub workspace_folders_initialize_params_base: WorkspaceFoldersInitializeParams,
}
///The result returned from an initialize request.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InitializeResult {
///The capabilities the language server provides.
pub capabilities: ServerCapabilities,
/**Information about the server.
@since 3.15.0*/
#[serde(rename = "serverInfo")]
#[serde(default)]
pub server_info: Option<ServerInfo>,
}
/**The data type of the ResponseError if the
initialize request fails.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InitializeError {
/**Indicates whether the client execute the following retry logic:
(1) show the message provided by the ResponseError to the user
(2) user selects retry or cancel
(3) if user selected retry the initialize method is sent again.*/
pub retry: bool,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InitializedParams {}
///The parameters of a change configuration notification.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidChangeConfigurationParams {
///The actual changed settings
pub settings: LSPAny,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidChangeConfigurationRegistrationOptions {
#[serde(default)]
pub section: Option<StringOrStringArray>,
}
///The parameters of a notification message.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ShowMessageParams {
///The message type. See {@link MessageType}
pub type_: MessageType,
///The actual message.
pub message: String,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ShowMessageRequestParams {
///The message type. See {@link MessageType}
pub type_: MessageType,
///The actual message.
pub message: String,
///The message action items to present.
#[serde(default)]
pub actions: Option<Vec<MessageActionItem>>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MessageActionItem {
///A short title like 'Retry', 'Open Log' etc.
pub title: String,
}
///The log message parameters.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LogMessageParams {
///The message type. See {@link MessageType}
pub type_: MessageType,
///The actual message.
pub message: String,
}
///The parameters sent in an open text document notification
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidOpenTextDocumentParams {
///The document that was opened.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentItem,
}
///The change text document notification's parameters.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidChangeTextDocumentParams {
/**The document that did change. The version number points
to the version after all provided content changes have
been applied.*/
#[serde(rename = "textDocument")]
pub text_document: VersionedTextDocumentIdentifier,
/**The actual content changes. The content changes describe single state changes
to the document. So if there are two content changes c1 (at array index 0) and
c2 (at array index 1) for a document in state S then c1 moves the document from
S to S' and c2 from S' to S''. So c1 is computed on the state S and c2 is computed
on the state S'.
To mirror the content of a document using change events use the following approach:
- start with the same initial content
- apply the 'textDocument/didChange' notifications in the order you receive them.
- apply the `TextDocumentContentChangeEvent`s in a single notification in the order
you receive them.*/
#[serde(rename = "contentChanges")]
pub content_changes: Vec<TextDocumentContentChangeEvent>,
}
///Describe options to be used when registered for text document change events.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentChangeRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
///How documents are synced to the server.
#[serde(rename = "syncKind")]
pub sync_kind: TextDocumentSyncKind,
}
///The parameters sent in a close text document notification
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidCloseTextDocumentParams {
///The document that was closed.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
}
///The parameters sent in a save text document notification
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidSaveTextDocumentParams {
///The document that was saved.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
/**Optional the content when saved. Depends on the includeText value
when the save notification was requested.*/
#[serde(default)]
pub text: Option<String>,
}
///Save registration options.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentSaveRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub save_options_base: SaveOptions,
}
///The parameters sent in a will save text document notification.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WillSaveTextDocumentParams {
///The document that will be saved.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
///The 'TextDocumentSaveReason'.
pub reason: TextDocumentSaveReason,
}
///A text edit applicable to a text document.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextEdit {
/**The range of the text document to be manipulated. To insert
text into a document create a range where start === end.*/
pub range: Range,
/**The string to be inserted. For delete operations use an
empty string.*/
#[serde(rename = "newText")]
pub new_text: String,
}
///The watched files change notification's parameters.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidChangeWatchedFilesParams {
///The actual file events.
pub changes: Vec<FileEvent>,
}
///Describe options to be used when registered for text document change events.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidChangeWatchedFilesRegistrationOptions {
///The watchers to register.
pub watchers: Vec<FileSystemWatcher>,
}
///The publish diagnostic notification's parameters.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PublishDiagnosticsParams {
///The URI for which diagnostic information is reported.
pub uri: DocumentUri,
/**Optional the version number of the document the diagnostics are published for.
@since 3.15.0*/
#[serde(default)]
pub version: Option<Integer>,
///An array of diagnostic information items.
pub diagnostics: Vec<Diagnostic>,
}
///Completion parameters
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
/**The completion context. This is only available it the client specifies
to send this using the client capability `textDocument.completion.contextSupport === true`*/
#[serde(default)]
pub context: Option<CompletionContext>,
}
/**A completion item represents a text snippet that is
proposed to complete text that is being typed.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionItem {
/**The label of this completion item.
The label property is also by default the text that
is inserted when selecting this completion.
If label details are provided the label itself should
be an unqualified name of the completion item.*/
pub label: String,
/**Additional details for the label
@since 3.17.0*/
#[serde(rename = "labelDetails")]
#[serde(default)]
pub label_details: Option<CompletionItemLabelDetails>,
/**The kind of this completion item. Based of the kind
an icon is chosen by the editor.*/
#[serde(default)]
pub kind: Option<CompletionItemKind>,
/**Tags for this completion item.
@since 3.15.0*/
#[serde(default)]
pub tags: Option<Vec<CompletionItemTag>>,
/**A human-readable string with additional information
about this item, like type or symbol information.*/
#[serde(default)]
pub detail: Option<String>,
///A human-readable string that represents a doc-comment.
#[serde(default)]
pub documentation: Option<MarkupContentOrString>,
/**Indicates if this item is deprecated.
@deprecated Use `tags` instead.*/
#[serde(default)]
pub deprecated: Option<bool>,
/**Select this item when showing.
*Note* that only one completion item can be selected and that the
tool / client decides which item that is. The rule is that the *first*
item of those that match best is selected.*/
#[serde(default)]
pub preselect: Option<bool>,
/**A string that should be used when comparing this item
with other items. When `falsy` the {@link CompletionItem.label label}
is used.*/
#[serde(rename = "sortText")]
#[serde(default)]
pub sort_text: Option<String>,
/**A string that should be used when filtering a set of
completion items. When `falsy` the {@link CompletionItem.label label}
is used.*/
#[serde(rename = "filterText")]
#[serde(default)]
pub filter_text: Option<String>,
/**A string that should be inserted into a document when selecting
this completion. When `falsy` the {@link CompletionItem.label label}
is used.
The `insertText` is subject to interpretation by the client side.
Some tools might not take the string literally. For example
VS Code when code complete is requested in this example
`con<cursor position>` and a completion item with an `insertText` of
`console` is provided it will only insert `sole`. Therefore it is
recommended to use `textEdit` instead since it avoids additional client
side interpretation.*/
#[serde(rename = "insertText")]
#[serde(default)]
pub insert_text: Option<String>,
/**The format of the insert text. The format applies to both the
`insertText` property and the `newText` property of a provided
`textEdit`. If omitted defaults to `InsertTextFormat.PlainText`.
Please note that the insertTextFormat doesn't apply to
`additionalTextEdits`.*/
#[serde(rename = "insertTextFormat")]
#[serde(default)]
pub insert_text_format: Option<InsertTextFormat>,
/**How whitespace and indentation is handled during completion
item insertion. If not provided the clients default value depends on
the `textDocument.completion.insertTextMode` client capability.
@since 3.16.0*/
#[serde(rename = "insertTextMode")]
#[serde(default)]
pub insert_text_mode: Option<InsertTextMode>,
/**An {@link TextEdit edit} which is applied to a document when selecting
this completion. When an edit is provided the value of
{@link CompletionItem.insertText insertText} is ignored.
Most editors support two different operations when accepting a completion
item. One is to insert a completion text and the other is to replace an
existing text with a completion text. Since this can usually not be
predetermined by a server it can report both ranges. Clients need to
signal support for `InsertReplaceEdits` via the
`textDocument.completion.insertReplaceSupport` client capability
property.
*Note 1:* The text edit's range as well as both ranges from an insert
replace edit must be a [single line] and they must contain the position
at which completion has been requested.
*Note 2:* If an `InsertReplaceEdit` is returned the edit's insert range
must be a prefix of the edit's replace range, that means it must be
contained and starting at the same position.
@since 3.16.0 additional type `InsertReplaceEdit`*/
#[serde(rename = "textEdit")]
#[serde(default)]
pub text_edit: Option<InsertReplaceEditOrTextEdit>,
/**The edit text used if the completion item is part of a CompletionList and
CompletionList defines an item default for the text edit range.
Clients will only honor this property if they opt into completion list
item defaults using the capability `completionList.itemDefaults`.
If not provided and a list's default range is provided the label
property is used as a text.
@since 3.17.0*/
#[serde(rename = "textEditText")]
#[serde(default)]
pub text_edit_text: Option<String>,
/**An optional array of additional {@link TextEdit text edits} that are applied when
selecting this completion. Edits must not overlap (including the same insert position)
with the main {@link CompletionItem.textEdit edit} nor with themselves.
Additional text edits should be used to change text unrelated to the current cursor position
(for example adding an import statement at the top of the file if the completion item will
insert an unqualified type).*/
#[serde(rename = "additionalTextEdits")]
#[serde(default)]
pub additional_text_edits: Option<Vec<TextEdit>>,
/**An optional set of characters that when pressed while this completion is active will accept it first and
then type that character. *Note* that all commit characters should have `length=1` and that superfluous
characters will be ignored.*/
#[serde(rename = "commitCharacters")]
#[serde(default)]
pub commit_characters: Option<Vec<String>>,
/**An optional {@link Command command} that is executed *after* inserting this completion. *Note* that
additional modifications to the current document should be described with the
{@link CompletionItem.additionalTextEdits additionalTextEdits}-property.*/
#[serde(default)]
pub command: Option<Command>,
/**A data entry field that is preserved on a completion item between a
{@link CompletionRequest} and a {@link CompletionResolveRequest}.*/
#[serde(default)]
pub data: Option<LSPAny>,
}
/**Represents a collection of {@link CompletionItem completion items} to be presented
in the editor.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionList {
/**This list it not complete. Further typing results in recomputing this list.
Recomputed lists have all their items replaced (not appended) in the
incomplete completion sessions.*/
#[serde(rename = "isIncomplete")]
pub is_incomplete: bool,
/**In many cases the items of an actual completion result share the same
value for properties like `commitCharacters` or the range of a text
edit. A completion list can therefore define item defaults which will
be used if a completion item itself doesn't specify the value.
If a completion list specifies a default value and a completion item
also specifies a corresponding value, the rules for combining these are
defined by `applyKinds` (if the client supports it), defaulting to
ApplyKind.Replace.
Servers are only allowed to return default values if the client
signals support for this via the `completionList.itemDefaults`
capability.
@since 3.17.0*/
#[serde(rename = "itemDefaults")]
#[serde(default)]
pub item_defaults: Option<CompletionItemDefaults>,
/**Specifies how fields from a completion item should be combined with those
from `completionList.itemDefaults`.
If unspecified, all fields will be treated as ApplyKind.Replace.
If a field's value is ApplyKind.Replace, the value from a completion item
(if provided and not `null`) will always be used instead of the value
from `completionItem.itemDefaults`.
If a field's value is ApplyKind.Merge, the values will be merged using
the rules defined against each field below.
Servers are only allowed to return `applyKind` if the client
signals support for this via the `completionList.applyKindSupport`
capability.
@since 3.18.0*/
#[serde(rename = "applyKind")]
#[serde(default)]
pub apply_kind: Option<CompletionItemApplyKinds>,
///The completion items.
pub items: Vec<CompletionItem>,
}
///Registration options for a {@link CompletionRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub completion_options_base: CompletionOptions,
}
///Parameters for a {@link HoverRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct HoverParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
}
///The result of a hover request.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Hover {
///The hover's content
pub contents: MarkedStringOrMarkedStringArrayOrMarkupContent,
/**An optional range inside the text document that is used to
visualize the hover, e.g. by changing the background color.*/
#[serde(default)]
pub range: Option<Range>,
}
///Registration options for a {@link HoverRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct HoverRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub hover_options_base: HoverOptions,
}
///Parameters for a {@link SignatureHelpRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SignatureHelpParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
/**The signature help context. This is only available if the client specifies
to send this using the client capability `textDocument.signatureHelp.contextSupport === true`
@since 3.15.0*/
#[serde(default)]
pub context: Option<SignatureHelpContext>,
}
/**Signature help represents the signature of something
callable. There can be multiple signature but only one
active and only one active parameter.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SignatureHelp {
///One or more signatures.
pub signatures: Vec<SignatureInformation>,
/**The active signature. If omitted or the value lies outside the
range of `signatures` the value defaults to zero or is ignored if
the `SignatureHelp` has no signatures.
Whenever possible implementors should make an active decision about
the active signature and shouldn't rely on a default value.
In future version of the protocol this property might become
mandatory to better express this.*/
#[serde(rename = "activeSignature")]
#[serde(default)]
pub active_signature: Option<Uinteger>,
/**The active parameter of the active signature.
If `null`, no parameter of the signature is active (for example a named
argument that does not match any declared parameters). This is only valid
if the client specifies the client capability
`textDocument.signatureHelp.noActiveParameterSupport === true`
If omitted or the value lies outside the range of
`signatures[activeSignature].parameters` defaults to 0 if the active
signature has parameters.
If the active signature has no parameters it is ignored.
In future version of the protocol this property might become
mandatory (but still nullable) to better express the active parameter if
the active signature does have any.
Since version 3.16.0 the `SignatureInformation` itself provides a
`activeParameter` property and it should be used instead of this one.*/
#[serde(rename = "activeParameter")]
#[serde(default)]
pub active_parameter: Option<Option<Uinteger>>,
}
///Registration options for a {@link SignatureHelpRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SignatureHelpRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub signature_help_options_base: SignatureHelpOptions,
}
///Parameters for a {@link DefinitionRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DefinitionParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
}
///Registration options for a {@link DefinitionRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DefinitionRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub definition_options_base: DefinitionOptions,
}
///Parameters for a {@link ReferencesRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ReferenceParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
pub context: ReferenceContext,
}
///Registration options for a {@link ReferencesRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ReferenceRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub reference_options_base: ReferenceOptions,
}
///Parameters for a {@link DocumentHighlightRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentHighlightParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
}
/**A document highlight is a range inside a text document which deserves
special attention. Usually a document highlight is visualized by changing
the background color of its range.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentHighlight {
///The range this highlight applies to.
pub range: Range,
///The highlight kind, default is {@link DocumentHighlightKind.Text text}.
#[serde(default)]
pub kind: Option<DocumentHighlightKind>,
}
///Registration options for a {@link DocumentHighlightRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentHighlightRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub document_highlight_options_base: DocumentHighlightOptions,
}
///Parameters for a {@link DocumentSymbolRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentSymbolParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
}
/**Represents information about programming constructs like variables, classes,
interfaces etc.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SymbolInformation {
#[serde(flatten)]
pub base_symbol_information_base: BaseSymbolInformation,
/**Indicates if this symbol is deprecated.
@deprecated Use tags instead*/
#[serde(default)]
pub deprecated: Option<bool>,
/**The location of this symbol. The location's range is used by a tool
to reveal the location in the editor. If the symbol is selected in the
tool the range's start information is used to position the cursor. So
the range usually spans more than the actual symbol's name and does
normally include things like visibility modifiers.
The range doesn't have to denote a node range in the sense of an abstract
syntax tree. It can therefore not be used to re-construct a hierarchy of
the symbols.*/
pub location: Location,
}
/**Represents programming constructs like variables, classes, interfaces etc.
that appear in a document. Document symbols can be hierarchical and they
have two ranges: one that encloses its definition and one that points to
its most interesting range, e.g. the range of an identifier.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentSymbol {
/**The name of this symbol. Will be displayed in the user interface and therefore must not be
an empty string or a string only consisting of white spaces.*/
pub name: String,
///More detail for this symbol, e.g the signature of a function.
#[serde(default)]
pub detail: Option<String>,
///The kind of this symbol.
pub kind: SymbolKind,
/**Tags for this document symbol.
@since 3.16.0*/
#[serde(default)]
pub tags: Option<Vec<SymbolTag>>,
/**Indicates if this symbol is deprecated.
@deprecated Use tags instead*/
#[serde(default)]
pub deprecated: Option<bool>,
/**The range enclosing this symbol not including leading/trailing whitespace but everything else
like comments. This information is typically used to determine if the clients cursor is
inside the symbol to reveal in the symbol in the UI.*/
pub range: Range,
/**The range that should be selected and revealed when this symbol is being picked, e.g the name of a function.
Must be contained by the `range`.*/
#[serde(rename = "selectionRange")]
pub selection_range: Range,
///Children of this symbol, e.g. properties of a class.
#[serde(default)]
pub children: Option<Vec<DocumentSymbol>>,
}
///Registration options for a {@link DocumentSymbolRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentSymbolRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub document_symbol_options_base: DocumentSymbolOptions,
}
///The parameters of a {@link CodeActionRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeActionParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The document in which the command was invoked.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
///The range for which the command was invoked.
pub range: Range,
///Context carrying additional information.
pub context: CodeActionContext,
}
/**Represents a reference to a command. Provides a title which
will be used to represent a command in the UI and, optionally,
an array of arguments which will be passed to the command handler
function when invoked.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Command {
///Title of the command, like `save`.
pub title: String,
/**An optional tooltip.
@since 3.18.0*/
#[serde(default)]
pub tooltip: Option<String>,
///The identifier of the actual command handler.
pub command: String,
/**Arguments that the command handler should be
invoked with.*/
#[serde(default)]
pub arguments: Option<Vec<LSPAny>>,
}
/**A code action represents a change that can be performed in code, e.g. to fix a problem or
to refactor code.
A CodeAction must set either `edit` and/or a `command`. If both are supplied, the `edit` is applied first, then the `command` is executed.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeAction {
///A short, human-readable, title for this code action.
pub title: String,
/**The kind of the code action.
Used to filter code actions.*/
#[serde(default)]
pub kind: Option<CodeActionKind>,
///The diagnostics that this code action resolves.
#[serde(default)]
pub diagnostics: Option<Vec<Diagnostic>>,
/**Marks this as a preferred action. Preferred actions are used by the `auto fix` command and can be targeted
by keybindings.
A quick fix should be marked preferred if it properly addresses the underlying error.
A refactoring should be marked preferred if it is the most reasonable choice of actions to take.
@since 3.15.0*/
#[serde(rename = "isPreferred")]
#[serde(default)]
pub is_preferred: Option<bool>,
/**Marks that the code action cannot currently be applied.
Clients should follow the following guidelines regarding disabled code actions:
- Disabled code actions are not shown in automatic [lightbulbs](https://code.visualstudio.com/docs/editor/editingevolved#_code-action)
code action menus.
- Disabled actions are shown as faded out in the code action menu when the user requests a more specific type
of code action, such as refactorings.
- If the user has a [keybinding](https://code.visualstudio.com/docs/editor/refactoring#_keybindings-for-code-actions)
that auto applies a code action and only disabled code actions are returned, the client should show the user an
error message with `reason` in the editor.
@since 3.16.0*/
#[serde(default)]
pub disabled: Option<CodeActionDisabled>,
///The workspace edit this code action performs.
#[serde(default)]
pub edit: Option<WorkspaceEdit>,
/**A command this code action executes. If a code action
provides an edit and a command, first the edit is
executed and then the command.*/
#[serde(default)]
pub command: Option<Command>,
/**A data entry field that is preserved on a code action between
a `textDocument/codeAction` and a `codeAction/resolve` request.
@since 3.16.0*/
#[serde(default)]
pub data: Option<LSPAny>,
/**Tags for this code action.
@since 3.18.0 - proposed*/
#[serde(default)]
pub tags: Option<Vec<CodeActionTag>>,
}
///Registration options for a {@link CodeActionRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeActionRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub code_action_options_base: CodeActionOptions,
}
///The parameters of a {@link WorkspaceSymbolRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceSymbolParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
/**A query string to filter symbols by. Clients may send an empty
string here to request all symbols.
The `query`-parameter should be interpreted in a *relaxed way* as editors
will apply their own highlighting and scoring on the results. A good rule
of thumb is to match case-insensitive and to simply check that the
characters of *query* appear in their order in a candidate symbol.
Servers shouldn't use prefix, substring, or similar strict matching.*/
pub query: String,
}
/**A special workspace symbol that supports locations without a range.
See also SymbolInformation.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceSymbol {
#[serde(flatten)]
pub base_symbol_information_base: BaseSymbolInformation,
/**The location of the symbol. Whether a server is allowed to
return a location without a range depends on the client
capability `workspace.symbol.resolveSupport`.
See SymbolInformation#location for more details.*/
pub location: LocationOrLocationUriOnly,
/**A data entry field that is preserved on a workspace symbol between a
workspace symbol request and a workspace symbol resolve request.*/
#[serde(default)]
pub data: Option<LSPAny>,
}
///Registration options for a {@link WorkspaceSymbolRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceSymbolRegistrationOptions {
#[serde(flatten)]
pub workspace_symbol_options_base: WorkspaceSymbolOptions,
}
///The parameters of a {@link CodeLensRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeLensParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The document to request code lens for.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
}
/**A code lens represents a {@link Command command} that should be shown along with
source text, like the number of references, a way to run tests, etc.
A code lens is _unresolved_ when no command is associated to it. For performance
reasons the creation of a code lens and resolving should be done in two stages.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeLens {
///The range in which this code lens is valid. Should only span a single line.
pub range: Range,
///The command this code lens represents.
#[serde(default)]
pub command: Option<Command>,
/**A data entry field that is preserved on a code lens item between
a {@link CodeLensRequest} and a {@link CodeLensResolveRequest}*/
#[serde(default)]
pub data: Option<LSPAny>,
}
///Registration options for a {@link CodeLensRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeLensRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub code_lens_options_base: CodeLensOptions,
}
///The parameters of a {@link DocumentLinkRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentLinkParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
#[serde(flatten)]
pub partial_result_params_mixin: PartialResultParams,
///The document to provide document links for.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
}
/**A document link is a range in a text document that links to an internal or external resource, like another
text document or a web site.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentLink {
///The range this link applies to.
pub range: Range,
///The uri this link points to. If missing a resolve request is sent later.
#[serde(default)]
pub target: Option<URI>,
/**The tooltip text when you hover over this link.
If a tooltip is provided, is will be displayed in a string that includes instructions on how to
trigger the link, such as `{0} (ctrl + click)`. The specific instructions vary depending on OS,
user settings, and localization.
@since 3.15.0*/
#[serde(default)]
pub tooltip: Option<String>,
/**A data entry field that is preserved on a document link between a
DocumentLinkRequest and a DocumentLinkResolveRequest.*/
#[serde(default)]
pub data: Option<LSPAny>,
}
///Registration options for a {@link DocumentLinkRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentLinkRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub document_link_options_base: DocumentLinkOptions,
}
///The parameters of a {@link DocumentFormattingRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentFormattingParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
///The document to format.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
///The format options.
pub options: FormattingOptions,
}
///Registration options for a {@link DocumentFormattingRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentFormattingRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub document_formatting_options_base: DocumentFormattingOptions,
}
///The parameters of a {@link DocumentRangeFormattingRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentRangeFormattingParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
///The document to format.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
///The range to format
pub range: Range,
///The format options
pub options: FormattingOptions,
}
///Registration options for a {@link DocumentRangeFormattingRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentRangeFormattingRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub document_range_formatting_options_base: DocumentRangeFormattingOptions,
}
/**The parameters of a {@link DocumentRangesFormattingRequest}.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentRangesFormattingParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
///The document to format.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
///The ranges to format
pub ranges: Vec<Range>,
///The format options
pub options: FormattingOptions,
}
///The parameters of a {@link DocumentOnTypeFormattingRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentOnTypeFormattingParams {
///The document to format.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
/**The position around which the on type formatting should happen.
This is not necessarily the exact position where the character denoted
by the property `ch` got typed.*/
pub position: Position,
/**The character that has been typed that triggered the formatting
on type request. That is not necessarily the last character that
got inserted into the document since the client could auto insert
characters as well (e.g. like automatic brace completion).*/
pub ch: String,
///The formatting options.
pub options: FormattingOptions,
}
///Registration options for a {@link DocumentOnTypeFormattingRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentOnTypeFormattingRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub document_on_type_formatting_options_base: DocumentOnTypeFormattingOptions,
}
///The parameters of a {@link RenameRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RenameParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
/**The new name of the symbol. If the given name is not valid the
request must return a {@link ResponseError} with an
appropriate message set.*/
#[serde(rename = "newName")]
pub new_name: String,
}
///Registration options for a {@link RenameRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RenameRegistrationOptions {
#[serde(flatten)]
pub text_document_registration_options_base: TextDocumentRegistrationOptions,
#[serde(flatten)]
pub rename_options_base: RenameOptions,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PrepareRenameParams {
#[serde(flatten)]
pub text_document_position_params_base: TextDocumentPositionParams,
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
}
///The parameters of a {@link ExecuteCommandRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ExecuteCommandParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
///The identifier of the actual command handler.
pub command: String,
///Arguments that the command should be invoked with.
#[serde(default)]
pub arguments: Option<Vec<LSPAny>>,
}
///Registration options for a {@link ExecuteCommandRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ExecuteCommandRegistrationOptions {
#[serde(flatten)]
pub execute_command_options_base: ExecuteCommandOptions,
}
///The parameters passed via an apply workspace edit request.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ApplyWorkspaceEditParams {
/**An optional label of the workspace edit. This label is
presented in the user interface for example on an undo
stack to undo the workspace edit.*/
#[serde(default)]
pub label: Option<String>,
///The edits to apply.
pub edit: WorkspaceEdit,
/**Additional data about the edit.
@since 3.18.0*/
#[serde(default)]
pub metadata: Option<WorkspaceEditMetadata>,
}
/**The result returned from the apply workspace edit request.
@since 3.17 renamed from ApplyWorkspaceEditResponse*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ApplyWorkspaceEditResult {
///Indicates whether the edit was applied or not.
pub applied: bool,
/**An optional textual description for why the edit was not applied.
This may be used by the server for diagnostic logging or to provide
a suitable error for a request that triggered the edit.*/
#[serde(rename = "failureReason")]
#[serde(default)]
pub failure_reason: Option<String>,
/**Depending on the client's failure handling strategy `failedChange` might
contain the index of the change that failed. This property is only available
if the client signals a `failureHandlingStrategy` in its client capabilities.*/
#[serde(rename = "failedChange")]
#[serde(default)]
pub failed_change: Option<Uinteger>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkDoneProgressBegin {
pub kind: String,
/**Mandatory title of the progress operation. Used to briefly inform about
the kind of operation being performed.
Examples: "Indexing" or "Linking dependencies".*/
pub title: String,
/**Controls if a cancel button should show to allow the user to cancel the
long running operation. Clients that don't support cancellation are allowed
to ignore the setting.*/
#[serde(default)]
pub cancellable: Option<bool>,
/**Optional, more detailed associated progress message. Contains
complementary information to the `title`.
Examples: "3/25 files", "project/src/module2", "node_modules/some_dep".
If unset, the previous progress message (if any) is still valid.*/
#[serde(default)]
pub message: Option<String>,
/**Optional progress percentage to display (value 100 is considered 100%).
If not provided infinite progress is assumed and clients are allowed
to ignore the `percentage` value in subsequent in report notifications.
The value should be steadily rising. Clients are free to ignore values
that are not following this rule. The value range is [0, 100].*/
#[serde(default)]
pub percentage: Option<Uinteger>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkDoneProgressReport {
pub kind: String,
/**Controls enablement state of a cancel button.
Clients that don't support cancellation or don't support controlling the button's
enablement state are allowed to ignore the property.*/
#[serde(default)]
pub cancellable: Option<bool>,
/**Optional, more detailed associated progress message. Contains
complementary information to the `title`.
Examples: "3/25 files", "project/src/module2", "node_modules/some_dep".
If unset, the previous progress message (if any) is still valid.*/
#[serde(default)]
pub message: Option<String>,
/**Optional progress percentage to display (value 100 is considered 100%).
If not provided infinite progress is assumed and clients are allowed
to ignore the `percentage` value in subsequent in report notifications.
The value should be steadily rising. Clients are free to ignore values
that are not following this rule. The value range is [0, 100]*/
#[serde(default)]
pub percentage: Option<Uinteger>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkDoneProgressEnd {
pub kind: String,
/**Optional, a final message indicating to for example indicate the outcome
of the operation.*/
#[serde(default)]
pub message: Option<String>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SetTraceParams {
pub value: TraceValue,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LogTraceParams {
pub message: String,
#[serde(default)]
pub verbose: Option<String>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CancelParams {
///The request id to cancel.
pub id: IntegerOrString,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ProgressParams {
///The progress token provided by the client or server.
pub token: ProgressToken,
///The progress data.
pub value: LSPAny,
}
/**A parameter literal used in requests to pass a text document and a position inside that
document.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentPositionParams {
///The text document.
#[serde(rename = "textDocument")]
pub text_document: TextDocumentIdentifier,
///The position inside the text document.
pub position: Position,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkDoneProgressParams {
///An optional token that a server can use to report work done progress.
#[serde(rename = "workDoneToken")]
#[serde(default)]
pub work_done_token: Option<ProgressToken>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PartialResultParams {
/**An optional token that a server can use to report partial results (e.g. streaming) to
the client.*/
#[serde(rename = "partialResultToken")]
#[serde(default)]
pub partial_result_token: Option<ProgressToken>,
}
/**Represents the connection of two locations. Provides additional metadata over normal {@link Location locations},
including an origin range.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LocationLink {
/**Span of the origin of this link.
Used as the underlined span for mouse interaction. Defaults to the word range at
the definition position.*/
#[serde(rename = "originSelectionRange")]
#[serde(default)]
pub origin_selection_range: Option<Range>,
///The target resource identifier of this link.
#[serde(rename = "targetUri")]
pub target_uri: DocumentUri,
/**The full target range of this link. If the target for example is a symbol then target range is the
range enclosing this symbol not including leading/trailing whitespace but everything else
like comments. This information is typically used to highlight the range in the editor.*/
#[serde(rename = "targetRange")]
pub target_range: Range,
/**The range that should be selected and revealed when this link is being followed, e.g the name of a function.
Must be contained by the `targetRange`. See also `DocumentSymbol#range`*/
#[serde(rename = "targetSelectionRange")]
pub target_selection_range: Range,
}
/**A range in a text document expressed as (zero-based) start and end positions.
If you want to specify a range that contains a line including the line ending
character(s) then use an end position denoting the start of the next line.
For example:
```ts
{
start: { line: 5, character: 23 }
end : { line 6, character : 0 }
}
```*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Range {
///The range's start position.
pub start: Position,
///The range's end position.
pub end: Position,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ImplementationOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
/**Static registration options to be returned in the initialize
request.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct StaticRegistrationOptions {
/**The id used to register the request. The id can be used to deregister
the request again. See also Registration#id.*/
#[serde(default)]
pub id: Option<String>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TypeDefinitionOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
///The workspace folder change event.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceFoldersChangeEvent {
///The array of added workspace folders
pub added: Vec<WorkspaceFolder>,
///The array of the removed workspace folders
pub removed: Vec<WorkspaceFolder>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ConfigurationItem {
///The scope to get the configuration section for.
#[serde(rename = "scopeUri")]
#[serde(default)]
pub scope_uri: Option<URI>,
///The configuration section asked for.
#[serde(default)]
pub section: Option<String>,
}
///A literal to identify a text document in the client.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentIdentifier {
///The text document's uri.
pub uri: DocumentUri,
}
///Represents a color in RGBA space.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Color {
///The red component of this color in the range [0-1].
pub red: Decimal,
///The green component of this color in the range [0-1].
pub green: Decimal,
///The blue component of this color in the range [0-1].
pub blue: Decimal,
///The alpha component of this color in the range [0-1].
pub alpha: Decimal,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentColorOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FoldingRangeOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DeclarationOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
/**Position in a text document expressed as zero-based line and character
offset. Prior to 3.17 the offsets were always based on a UTF-16 string
representation. So a string of the form `a𐐀b` the character offset of the
character `a` is 0, the character offset of `𐐀` is 1 and the character
offset of b is 3 since `𐐀` is represented using two code units in UTF-16.
Since 3.17 clients and servers can agree on a different string encoding
representation (e.g. UTF-8). The client announces it's supported encoding
via the client capability [`general.positionEncodings`](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#clientCapabilities).
The value is an array of position encodings the client supports, with
decreasing preference (e.g. the encoding at index `0` is the most preferred
one). To stay backwards compatible the only mandatory encoding is UTF-16
represented via the string `utf-16`. The server can pick one of the
encodings offered by the client and signals that encoding back to the
client via the initialize result's property
[`capabilities.positionEncoding`](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#serverCapabilities). If the string value
`utf-16` is missing from the client's capability `general.positionEncodings`
servers can safely assume that the client supports UTF-16. If the server
omits the position encoding in its initialize result the encoding defaults
to the string value `utf-16`. Implementation considerations: since the
conversion from one encoding into another requires the content of the
file / line the conversion is best done where the file is read which is
usually on the server side.
Positions are line end character agnostic. So you can not specify a position
that denotes `\r|\n` or `\n|` where `|` represents the character offset.
@since 3.17.0 - support for negotiated position encoding.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Position {
///Line position in a document (zero-based).
pub line: Uinteger,
/**Character offset on a line in a document (zero-based).
The meaning of this offset is determined by the negotiated
`PositionEncodingKind`.*/
pub character: Uinteger,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SelectionRangeOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
/**Call hierarchy options used during static registration.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CallHierarchyOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
///The legend used by the server
pub legend: SemanticTokensLegend,
/**Server supports providing semantic tokens for a specific range
of a document.*/
#[serde(default)]
pub range: Option<BooleanOrLiteral57f9bf6390bb37d9>,
///Server supports providing semantic tokens for a full document.
#[serde(default)]
pub full: Option<BooleanOrSemanticTokensFullDelta>,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensEdit {
///The start offset of the edit.
pub start: Uinteger,
///The count of elements to remove.
#[serde(rename = "deleteCount")]
pub delete_count: Uinteger,
///The elements to insert.
#[serde(default)]
pub data: Option<Vec<Uinteger>>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LinkedEditingRangeOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
/**Represents information on a file/folder create.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FileCreate {
///A file:// URI for the location of the file/folder being created.
pub uri: String,
}
/**Describes textual changes on a text document. A TextDocumentEdit describes all changes
on a document version Si and after they are applied move the document to version Si+1.
So the creator of a TextDocumentEdit doesn't need to sort the array of edits or do any
kind of ordering. However the edits must be non overlapping.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentEdit {
///The text document to change.
#[serde(rename = "textDocument")]
pub text_document: OptionalVersionedTextDocumentIdentifier,
/**The edits to be applied.
@since 3.16.0 - support for AnnotatedTextEdit. This is guarded using a
client capability.
@since 3.18.0 - support for SnippetTextEdit. This is guarded using a
client capability.*/
pub edits: Vec<AnnotatedTextEditOrSnippetTextEditOrTextEdit>,
}
///Create file operation.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CreateFile {
#[serde(flatten)]
pub resource_operation_base: ResourceOperation,
///A create
pub kind: String,
///The resource to create.
pub uri: DocumentUri,
///Additional options
#[serde(default)]
pub options: Option<CreateFileOptions>,
}
///Rename file operation
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RenameFile {
#[serde(flatten)]
pub resource_operation_base: ResourceOperation,
///A rename
pub kind: String,
///The old (existing) location.
#[serde(rename = "oldUri")]
pub old_uri: DocumentUri,
///The new location.
#[serde(rename = "newUri")]
pub new_uri: DocumentUri,
///Rename options.
#[serde(default)]
pub options: Option<RenameFileOptions>,
}
///Delete file operation
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DeleteFile {
#[serde(flatten)]
pub resource_operation_base: ResourceOperation,
///A delete
pub kind: String,
///The file to delete.
pub uri: DocumentUri,
///Delete options.
#[serde(default)]
pub options: Option<DeleteFileOptions>,
}
/**Additional information that describes document changes.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ChangeAnnotation {
/**A human-readable string describing the actual change. The string
is rendered prominent in the user interface.*/
pub label: String,
/**A flag which indicates that user confirmation is needed
before applying the change.*/
#[serde(rename = "needsConfirmation")]
#[serde(default)]
pub needs_confirmation: Option<bool>,
/**A human-readable string which is rendered less prominent in
the user interface.*/
#[serde(default)]
pub description: Option<String>,
}
/**A filter to describe in which file operation requests or notifications
the server is interested in receiving.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FileOperationFilter {
///A Uri scheme like `file` or `untitled`.
#[serde(default)]
pub scheme: Option<String>,
///The actual file operation pattern.
pub pattern: FileOperationPattern,
}
/**Represents information on a file/folder rename.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FileRename {
///A file:// URI for the original location of the file/folder being renamed.
#[serde(rename = "oldUri")]
pub old_uri: String,
///A file:// URI for the new location of the file/folder being renamed.
#[serde(rename = "newUri")]
pub new_uri: String,
}
/**Represents information on a file/folder delete.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FileDelete {
///A file:// URI for the location of the file/folder being deleted.
pub uri: String,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MonikerOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
/**Type hierarchy options used during static registration.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TypeHierarchyOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
///@since 3.17.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineValueContext {
///The stack frame (as a DAP Id) where the execution has stopped.
#[serde(rename = "frameId")]
pub frame_id: Integer,
/**The document range where execution has stopped.
Typically the end position of the range denotes the line where the inline values are shown.*/
#[serde(rename = "stoppedLocation")]
pub stopped_location: Range,
}
/**Returns inline value information as the complete text to be shown.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineValueText {
///The document range for which the inline value applies.
pub range: Range,
///The text of the inline value.
pub text: String,
}
/**To compute inline value through a variable lookup.
If only a range is specified, the variable name should
be extracted from the underlying document.
An optional variable name could be used to lookup instead
of the extracted name.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineValueVariableLookup {
/**The document range for which the inline value applies.
The range could be used to extract the variable name
from the underlying document.*/
pub range: Range,
///If specified the name of the variable to look up.
#[serde(rename = "variableName")]
#[serde(default)]
pub variable_name: Option<String>,
///How to perform the lookup.
#[serde(rename = "caseSensitiveLookup")]
pub case_sensitive_lookup: bool,
}
/**To compute an inline value through an expression evaluation.
If only a range is specified, the expression should be
extracted from the underlying document.
An optional expression could be evaluated instead of
the extracted expression.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineValueEvaluatableExpression {
/**The document range for which the inline value applies.
The range could be used to extract the evaluatable expression
from the underlying document.*/
pub range: Range,
///If specified the expression could be evaluated instead.
#[serde(default)]
pub expression: Option<String>,
}
/**Inline value options used during static registration.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineValueOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
/**An inlay hint label part allows for interactive and composite labels
of inlay hints.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlayHintLabelPart {
///The value of this label part.
pub value: String,
/**The tooltip text when you hover over this label part. Depending on
the client capability `inlayHint.resolveSupport` clients might resolve
this property late using the resolve request.*/
#[serde(default)]
pub tooltip: Option<MarkupContentOrString>,
/**An optional source code location that represents this
label part.
The editor will use this location for the hover and for code navigation
features: This part will become a clickable link that resolves to the
definition of the symbol at the given location (not necessarily the
location itself), it shows the hover that shows at the given location,
and it shows a context menu with further code navigation commands.
Depending on the client capability `inlayHint.resolveSupport` clients
might resolve this property late using the resolve request.*/
#[serde(default)]
pub location: Option<Location>,
/**An optional command for this label part.
Depending on the client capability `inlayHint.resolveSupport` clients
might resolve this property late using the resolve request.*/
#[serde(default)]
pub command: Option<Command>,
}
/**A `MarkupContent` literal represents a string value which content is interpreted base on its
kind flag. Currently the protocol supports `plaintext` and `markdown` as markup kinds.
If the kind is `markdown` then the value can contain fenced code blocks like in GitHub issues.
See https://help.github.com/articles/creating-and-highlighting-code-blocks/#syntax-highlighting
Here is an example how such a string can be constructed using JavaScript / TypeScript:
```ts
let markdown: MarkdownContent = {
kind: MarkupKind.Markdown,
value: [
'# Header',
'Some text',
'```typescript',
'someCode();',
'```'
].join('\n')
};
```
*Please Note* that clients might sanitize the return markdown. A client could decide to
remove HTML from the markdown to avoid script execution.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MarkupContent {
///The type of the Markup
pub kind: MarkupKind,
///The content itself
pub value: String,
}
/**Inlay hint options used during static registration.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlayHintOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
/**The server provides support to resolve additional
information for an inlay hint item.*/
#[serde(rename = "resolveProvider")]
#[serde(default)]
pub resolve_provider: Option<bool>,
}
/**A full diagnostic report with a set of related documents.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RelatedFullDocumentDiagnosticReport {
#[serde(flatten)]
pub full_document_diagnostic_report_base: FullDocumentDiagnosticReport,
/**Diagnostics of related documents. This information is useful
in programming languages where code in a file A can generate
diagnostics in a file B which A depends on. An example of
such a language is C/C++ where marco definitions in a file
a.cpp and result in errors in a header file b.hpp.
@since 3.17.0*/
#[serde(rename = "relatedDocuments")]
#[serde(default)]
pub related_documents: Option<
std::collections::BTreeMap<
DocumentUri,
FullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport,
>,
>,
}
/**An unchanged diagnostic report with a set of related documents.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RelatedUnchangedDocumentDiagnosticReport {
#[serde(flatten)]
pub unchanged_document_diagnostic_report_base: UnchangedDocumentDiagnosticReport,
/**Diagnostics of related documents. This information is useful
in programming languages where code in a file A can generate
diagnostics in a file B which A depends on. An example of
such a language is C/C++ where marco definitions in a file
a.cpp and result in errors in a header file b.hpp.
@since 3.17.0*/
#[serde(rename = "relatedDocuments")]
#[serde(default)]
pub related_documents: Option<
std::collections::BTreeMap<
DocumentUri,
FullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport,
>,
>,
}
/**A diagnostic report with a full set of problems.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FullDocumentDiagnosticReport {
///A full document diagnostic report.
pub kind: String,
/**An optional result id. If provided it will
be sent on the next diagnostic request for the
same document.*/
#[serde(rename = "resultId")]
#[serde(default)]
pub result_id: Option<String>,
///The actual items.
pub items: Vec<Diagnostic>,
}
/**A diagnostic report indicating that the last returned
report is still accurate.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UnchangedDocumentDiagnosticReport {
/**A document diagnostic report indicating
no changes to the last result. A server can
only return `unchanged` if result ids are
provided.*/
pub kind: String,
/**A result id which will be sent on the next
diagnostic request for the same document.*/
#[serde(rename = "resultId")]
pub result_id: String,
}
/**Diagnostic options.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DiagnosticOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
/**An optional identifier under which the diagnostics are
managed by the client.*/
#[serde(default)]
pub identifier: Option<String>,
/**Whether the language has inter file dependencies meaning that
editing code in one file can result in a different diagnostic
set in another file. Inter file dependencies are common for
most programming languages and typically uncommon for linters.*/
#[serde(rename = "interFileDependencies")]
pub inter_file_dependencies: bool,
///The server provides support for workspace diagnostics as well.
#[serde(rename = "workspaceDiagnostics")]
pub workspace_diagnostics: bool,
}
/**A previous result id in a workspace pull request.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PreviousResultId {
/**The URI for which the client knowns a
result id.*/
pub uri: DocumentUri,
///The value of the previous result id.
pub value: String,
}
/**A notebook document.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocument {
///The notebook document's uri.
pub uri: URI,
///The type of the notebook.
#[serde(rename = "notebookType")]
pub notebook_type: String,
/**The version number of this document (it will increase after each
change, including undo/redo).*/
pub version: Integer,
/**Additional metadata stored with the notebook
document.
Note: should always be an object literal (e.g. LSPObject)*/
#[serde(default)]
pub metadata: Option<LSPObject>,
///The cells of a notebook.
pub cells: Vec<NotebookCell>,
}
/**An item to transfer a text document from the client to the
server.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentItem {
///The text document's uri.
pub uri: DocumentUri,
///The text document's language identifier.
#[serde(rename = "languageId")]
pub language_id: LanguageKind,
/**The version number of this document (it will increase after each
change, including undo/redo).*/
pub version: Integer,
///The content of the opened text document.
pub text: String,
}
/**Options specific to a notebook plus its cells
to be synced to the server.
If a selector provides a notebook document
filter but no cell selector all cells of a
matching notebook document will be synced.
If a selector provides no notebook document
filter but only a cell selector all notebook
document that contain at least one matching
cell will be synced.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentSyncOptions {
///The notebooks to be synced
#[serde(rename = "notebookSelector")]
pub notebook_selector: Vec<
NotebookDocumentFilterWithCellsOrNotebookDocumentFilterWithNotebook,
>,
/**Whether save notification should be forwarded to
the server. Will only be honored if mode === `notebook`.*/
#[serde(default)]
pub save: Option<bool>,
}
/**A versioned notebook document identifier.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct VersionedNotebookDocumentIdentifier {
///The version number of this notebook document.
pub version: Integer,
///The notebook document's uri.
pub uri: URI,
}
/**A change event for a notebook document.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentChangeEvent {
/**The changed meta data if any.
Note: should always be an object literal (e.g. LSPObject)*/
#[serde(default)]
pub metadata: Option<LSPObject>,
///Changes to cells
#[serde(default)]
pub cells: Option<NotebookDocumentCellChanges>,
}
/**A literal to identify a notebook document in the client.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentIdentifier {
///The notebook document's uri.
pub uri: URI,
}
/**Provides information about the context in which an inline completion was requested.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineCompletionContext {
///Describes how the inline completion was triggered.
#[serde(rename = "triggerKind")]
pub trigger_kind: InlineCompletionTriggerKind,
///Provides information about the currently selected item in the autocomplete widget if it is visible.
#[serde(rename = "selectedCompletionInfo")]
#[serde(default)]
pub selected_completion_info: Option<SelectedCompletionInfo>,
}
/**A string value used as a snippet is a template which allows to insert text
and to control the editor cursor when insertion happens.
A snippet can define tab stops and placeholders with `$1`, `$2`
and `${3:foo}`. `$0` defines the final tab stop, it defaults to
the end of the snippet. Variables are defined with `$name` and
`${name:default value}`.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct StringValue {
///The kind of string value.
pub kind: String,
///The snippet string.
pub value: String,
}
/**Inline completion options used during static registration.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineCompletionOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
/**Text document content provider options.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentContentOptions {
///The schemes for which the server provides content.
pub schemes: Vec<String>,
}
///General parameters to register for a notification or to register a provider.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Registration {
/**The id used to register the request. The id can be used to deregister
the request again.*/
pub id: String,
///The method / capability to register for.
pub method: String,
///Options necessary for the registration.
#[serde(rename = "registerOptions")]
#[serde(default)]
pub register_options: Option<LSPAny>,
}
///General parameters to unregister a request or notification.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Unregistration {
/**The id used to unregister the request or notification. Usually an id
provided during the register request.*/
pub id: String,
///The method to unregister for.
pub method: String,
}
///The initialize parameters
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct _InitializeParams {
#[serde(flatten)]
pub work_done_progress_params_mixin: WorkDoneProgressParams,
/**The process Id of the parent process that started
the server.
Is `null` if the process has not been started by another process.
If the parent process is not alive then the server should exit.*/
#[serde(rename = "processId")]
pub process_id: Option<Integer>,
/**Information about the client
@since 3.15.0*/
#[serde(rename = "clientInfo")]
#[serde(default)]
pub client_info: Option<ClientInfo>,
/**The locale the client is currently showing the user interface
in. This must not necessarily be the locale of the operating
system.
Uses IETF language tags as the value's syntax
(See https://en.wikipedia.org/wiki/IETF_language_tag)
@since 3.16.0*/
#[serde(default)]
pub locale: Option<String>,
/**The rootPath of the workspace. Is null
if no folder is open.
@deprecated in favour of rootUri.*/
#[serde(rename = "rootPath")]
#[serde(default)]
pub root_path: Option<Option<String>>,
/**The rootUri of the workspace. Is null if no
folder is open. If both `rootPath` and `rootUri` are set
`rootUri` wins.
@deprecated in favour of workspaceFolders.*/
#[serde(rename = "rootUri")]
pub root_uri: Option<DocumentUri>,
///The capabilities provided by the client (editor or tool)
pub capabilities: ClientCapabilities,
///User provided initialization options.
#[serde(rename = "initializationOptions")]
#[serde(default)]
pub initialization_options: Option<LSPAny>,
///The initial trace setting. If omitted trace is disabled ('off').
#[serde(default)]
pub trace: Option<TraceValue>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceFoldersInitializeParams {
/**The workspace folders configured in the client when the server starts.
This property is only available if the client supports workspace folders.
It can be `null` if the client supports workspace folders but none are
configured.
@since 3.6.0*/
#[serde(rename = "workspaceFolders")]
#[serde(default)]
pub workspace_folders: Option<Option<Vec<WorkspaceFolder>>>,
}
/**Defines the capabilities provided by a language
server.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ServerCapabilities {
/**The position encoding the server picked from the encodings offered
by the client via the client capability `general.positionEncodings`.
If the client didn't provide any position encodings the only valid
value that a server can return is 'utf-16'.
If omitted it defaults to 'utf-16'.
@since 3.17.0*/
#[serde(rename = "positionEncoding")]
#[serde(default)]
pub position_encoding: Option<PositionEncodingKind>,
/**Defines how text documents are synced. Is either a detailed structure
defining each notification or for backwards compatibility the
TextDocumentSyncKind number.*/
#[serde(rename = "textDocumentSync")]
#[serde(default)]
pub text_document_sync: Option<TextDocumentSyncKindOrTextDocumentSyncOptions>,
/**Defines how notebook documents are synced.
@since 3.17.0*/
#[serde(rename = "notebookDocumentSync")]
#[serde(default)]
pub notebook_document_sync: Option<
NotebookDocumentSyncOptionsOrNotebookDocumentSyncRegistrationOptions,
>,
///The server provides completion support.
#[serde(rename = "completionProvider")]
#[serde(default)]
pub completion_provider: Option<CompletionOptions>,
///The server provides hover support.
#[serde(rename = "hoverProvider")]
#[serde(default)]
pub hover_provider: Option<BooleanOrHoverOptions>,
///The server provides signature help support.
#[serde(rename = "signatureHelpProvider")]
#[serde(default)]
pub signature_help_provider: Option<SignatureHelpOptions>,
///The server provides Goto Declaration support.
#[serde(rename = "declarationProvider")]
#[serde(default)]
pub declaration_provider: Option<
BooleanOrDeclarationOptionsOrDeclarationRegistrationOptions,
>,
///The server provides goto definition support.
#[serde(rename = "definitionProvider")]
#[serde(default)]
pub definition_provider: Option<BooleanOrDefinitionOptions>,
///The server provides Goto Type Definition support.
#[serde(rename = "typeDefinitionProvider")]
#[serde(default)]
pub type_definition_provider: Option<
BooleanOrTypeDefinitionOptionsOrTypeDefinitionRegistrationOptions,
>,
///The server provides Goto Implementation support.
#[serde(rename = "implementationProvider")]
#[serde(default)]
pub implementation_provider: Option<
BooleanOrImplementationOptionsOrImplementationRegistrationOptions,
>,
///The server provides find references support.
#[serde(rename = "referencesProvider")]
#[serde(default)]
pub references_provider: Option<BooleanOrReferenceOptions>,
///The server provides document highlight support.
#[serde(rename = "documentHighlightProvider")]
#[serde(default)]
pub document_highlight_provider: Option<BooleanOrDocumentHighlightOptions>,
///The server provides document symbol support.
#[serde(rename = "documentSymbolProvider")]
#[serde(default)]
pub document_symbol_provider: Option<BooleanOrDocumentSymbolOptions>,
/**The server provides code actions. CodeActionOptions may only be
specified if the client states that it supports
`codeActionLiteralSupport` in its initial `initialize` request.*/
#[serde(rename = "codeActionProvider")]
#[serde(default)]
pub code_action_provider: Option<BooleanOrCodeActionOptions>,
///The server provides code lens.
#[serde(rename = "codeLensProvider")]
#[serde(default)]
pub code_lens_provider: Option<CodeLensOptions>,
///The server provides document link support.
#[serde(rename = "documentLinkProvider")]
#[serde(default)]
pub document_link_provider: Option<DocumentLinkOptions>,
///The server provides color provider support.
#[serde(rename = "colorProvider")]
#[serde(default)]
pub color_provider: Option<
BooleanOrDocumentColorOptionsOrDocumentColorRegistrationOptions,
>,
///The server provides workspace symbol support.
#[serde(rename = "workspaceSymbolProvider")]
#[serde(default)]
pub workspace_symbol_provider: Option<BooleanOrWorkspaceSymbolOptions>,
///The server provides document formatting.
#[serde(rename = "documentFormattingProvider")]
#[serde(default)]
pub document_formatting_provider: Option<BooleanOrDocumentFormattingOptions>,
///The server provides document range formatting.
#[serde(rename = "documentRangeFormattingProvider")]
#[serde(default)]
pub document_range_formatting_provider: Option<
BooleanOrDocumentRangeFormattingOptions,
>,
///The server provides document formatting on typing.
#[serde(rename = "documentOnTypeFormattingProvider")]
#[serde(default)]
pub document_on_type_formatting_provider: Option<DocumentOnTypeFormattingOptions>,
/**The server provides rename support. RenameOptions may only be
specified if the client states that it supports
`prepareSupport` in its initial `initialize` request.*/
#[serde(rename = "renameProvider")]
#[serde(default)]
pub rename_provider: Option<BooleanOrRenameOptions>,
///The server provides folding provider support.
#[serde(rename = "foldingRangeProvider")]
#[serde(default)]
pub folding_range_provider: Option<
BooleanOrFoldingRangeOptionsOrFoldingRangeRegistrationOptions,
>,
///The server provides selection range support.
#[serde(rename = "selectionRangeProvider")]
#[serde(default)]
pub selection_range_provider: Option<
BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions,
>,
///The server provides execute command support.
#[serde(rename = "executeCommandProvider")]
#[serde(default)]
pub execute_command_provider: Option<ExecuteCommandOptions>,
/**The server provides call hierarchy support.
@since 3.16.0*/
#[serde(rename = "callHierarchyProvider")]
#[serde(default)]
pub call_hierarchy_provider: Option<
BooleanOrCallHierarchyOptionsOrCallHierarchyRegistrationOptions,
>,
/**The server provides linked editing range support.
@since 3.16.0*/
#[serde(rename = "linkedEditingRangeProvider")]
#[serde(default)]
pub linked_editing_range_provider: Option<
BooleanOrLinkedEditingRangeOptionsOrLinkedEditingRangeRegistrationOptions,
>,
/**The server provides semantic tokens support.
@since 3.16.0*/
#[serde(rename = "semanticTokensProvider")]
#[serde(default)]
pub semantic_tokens_provider: Option<
SemanticTokensOptionsOrSemanticTokensRegistrationOptions,
>,
/**The server provides moniker support.
@since 3.16.0*/
#[serde(rename = "monikerProvider")]
#[serde(default)]
pub moniker_provider: Option<BooleanOrMonikerOptionsOrMonikerRegistrationOptions>,
/**The server provides type hierarchy support.
@since 3.17.0*/
#[serde(rename = "typeHierarchyProvider")]
#[serde(default)]
pub type_hierarchy_provider: Option<
BooleanOrTypeHierarchyOptionsOrTypeHierarchyRegistrationOptions,
>,
/**The server provides inline values.
@since 3.17.0*/
#[serde(rename = "inlineValueProvider")]
#[serde(default)]
pub inline_value_provider: Option<
BooleanOrInlineValueOptionsOrInlineValueRegistrationOptions,
>,
/**The server provides inlay hints.
@since 3.17.0*/
#[serde(rename = "inlayHintProvider")]
#[serde(default)]
pub inlay_hint_provider: Option<
BooleanOrInlayHintOptionsOrInlayHintRegistrationOptions,
>,
/**The server has support for pull model diagnostics.
@since 3.17.0*/
#[serde(rename = "diagnosticProvider")]
#[serde(default)]
pub diagnostic_provider: Option<DiagnosticOptionsOrDiagnosticRegistrationOptions>,
/**Inline completion options used during static registration.
@since 3.18.0*/
#[serde(rename = "inlineCompletionProvider")]
#[serde(default)]
pub inline_completion_provider: Option<BooleanOrInlineCompletionOptions>,
///Workspace specific server capabilities.
#[serde(default)]
pub workspace: Option<WorkspaceOptions>,
///Experimental server capabilities.
#[serde(default)]
pub experimental: Option<LSPAny>,
}
/**Information about the server
@since 3.15.0
@since 3.18.0 ServerInfo type name added.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ServerInfo {
///The name of the server as defined by the server.
pub name: String,
///The server's version as defined by the server.
#[serde(default)]
pub version: Option<String>,
}
///A text document identifier to denote a specific version of a text document.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct VersionedTextDocumentIdentifier {
#[serde(flatten)]
pub text_document_identifier_base: TextDocumentIdentifier,
///The version number of this document.
pub version: Integer,
}
///Save options.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SaveOptions {
///The client is supposed to include the content on save.
#[serde(rename = "includeText")]
#[serde(default)]
pub include_text: Option<bool>,
}
///An event describing a file change.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FileEvent {
///The file's uri.
pub uri: DocumentUri,
///The change type.
pub type_: FileChangeType,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FileSystemWatcher {
/**The glob pattern to watch. See {@link GlobPattern glob pattern} for more detail.
@since 3.17.0 support for relative patterns.*/
#[serde(rename = "globPattern")]
pub glob_pattern: GlobPattern,
/**The kind of events of interest. If omitted it defaults
to WatchKind.Create | WatchKind.Change | WatchKind.Delete
which is 7.*/
#[serde(default)]
pub kind: Option<WatchKind>,
}
/**Represents a diagnostic, such as a compiler error or warning. Diagnostic objects
are only valid in the scope of a resource.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Diagnostic {
///The range at which the message applies
pub range: Range,
/**The diagnostic's severity. To avoid interpretation mismatches when a
server is used with different clients it is highly recommended that servers
always provide a severity value.*/
#[serde(default)]
pub severity: Option<DiagnosticSeverity>,
///The diagnostic's code, which usually appear in the user interface.
#[serde(default)]
pub code: Option<IntegerOrString>,
/**An optional property to describe the error code.
Requires the code field (above) to be present/not null.
@since 3.16.0*/
#[serde(rename = "codeDescription")]
#[serde(default)]
pub code_description: Option<CodeDescription>,
/**A human-readable string describing the source of this
diagnostic, e.g. 'typescript' or 'super lint'. It usually
appears in the user interface.*/
#[serde(default)]
pub source: Option<String>,
/**The diagnostic's message. It usually appears in the user interface.
@since 3.18.0 - support for MarkupContent. This is guarded by the client
capability `textDocument.diagnostic.markupMessageSupport`.*/
pub message: MarkupContentOrString,
/**Additional metadata about the diagnostic.
@since 3.15.0*/
#[serde(default)]
pub tags: Option<Vec<DiagnosticTag>>,
/**An array of related diagnostic information, e.g. when symbol-names within
a scope collide all definitions can be marked via this property.*/
#[serde(rename = "relatedInformation")]
#[serde(default)]
pub related_information: Option<Vec<DiagnosticRelatedInformation>>,
/**A data entry field that is preserved between a `textDocument/publishDiagnostics`
notification and `textDocument/codeAction` request.
@since 3.16.0*/
#[serde(default)]
pub data: Option<LSPAny>,
}
///Contains additional information about the context in which a completion request is triggered.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionContext {
///How the completion was triggered.
#[serde(rename = "triggerKind")]
pub trigger_kind: CompletionTriggerKind,
/**The trigger character (a single character) that has trigger code complete.
Is undefined if `triggerKind !== CompletionTriggerKind.TriggerCharacter`*/
#[serde(rename = "triggerCharacter")]
#[serde(default)]
pub trigger_character: Option<String>,
}
/**Additional details for a completion item label.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionItemLabelDetails {
/**An optional string which is rendered less prominently directly after {@link CompletionItem.label label},
without any spacing. Should be used for function signatures and type annotations.*/
#[serde(default)]
pub detail: Option<String>,
/**An optional string which is rendered less prominently after {@link CompletionItem.detail}. Should be used
for fully qualified names and file paths.*/
#[serde(default)]
pub description: Option<String>,
}
/**A special text edit to provide an insert and a replace operation.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InsertReplaceEdit {
///The string to be inserted.
#[serde(rename = "newText")]
pub new_text: String,
///The range if the insert is requested
pub insert: Range,
///The range if the replace is requested.
pub replace: Range,
}
/**In many cases the items of an actual completion result share the same
value for properties like `commitCharacters` or the range of a text
edit. A completion list can therefore define item defaults which will
be used if a completion item itself doesn't specify the value.
If a completion list specifies a default value and a completion item
also specifies a corresponding value, the rules for combining these are
defined by `applyKinds` (if the client supports it), defaulting to
ApplyKind.Replace.
Servers are only allowed to return default values if the client
signals support for this via the `completionList.itemDefaults`
capability.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionItemDefaults {
/**A default commit character set.
@since 3.17.0*/
#[serde(rename = "commitCharacters")]
#[serde(default)]
pub commit_characters: Option<Vec<String>>,
/**A default edit range.
@since 3.17.0*/
#[serde(rename = "editRange")]
#[serde(default)]
pub edit_range: Option<EditRangeWithInsertReplaceOrRange>,
/**A default insert text format.
@since 3.17.0*/
#[serde(rename = "insertTextFormat")]
#[serde(default)]
pub insert_text_format: Option<InsertTextFormat>,
/**A default insert text mode.
@since 3.17.0*/
#[serde(rename = "insertTextMode")]
#[serde(default)]
pub insert_text_mode: Option<InsertTextMode>,
/**A default data value.
@since 3.17.0*/
#[serde(default)]
pub data: Option<LSPAny>,
}
/**Specifies how fields from a completion item should be combined with those
from `completionList.itemDefaults`.
If unspecified, all fields will be treated as ApplyKind.Replace.
If a field's value is ApplyKind.Replace, the value from a completion item (if
provided and not `null`) will always be used instead of the value from
`completionItem.itemDefaults`.
If a field's value is ApplyKind.Merge, the values will be merged using the rules
defined against each field below.
Servers are only allowed to return `applyKind` if the client
signals support for this via the `completionList.applyKindSupport`
capability.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionItemApplyKinds {
/**Specifies whether commitCharacters on a completion will replace or be
merged with those in `completionList.itemDefaults.commitCharacters`.
If ApplyKind.Replace, the commit characters from the completion item will
always be used unless not provided, in which case those from
`completionList.itemDefaults.commitCharacters` will be used. An
empty list can be used if a completion item does not have any commit
characters and also should not use those from
`completionList.itemDefaults.commitCharacters`.
If ApplyKind.Merge the commitCharacters for the completion will be the
union of all values in both `completionList.itemDefaults.commitCharacters`
and the completion's own `commitCharacters`.
@since 3.18.0*/
#[serde(rename = "commitCharacters")]
#[serde(default)]
pub commit_characters: Option<ApplyKind>,
/**Specifies whether the `data` field on a completion will replace or
be merged with data from `completionList.itemDefaults.data`.
If ApplyKind.Replace, the data from the completion item will be used if
provided (and not `null`), otherwise
`completionList.itemDefaults.data` will be used. An empty object can
be used if a completion item does not have any data but also should
not use the value from `completionList.itemDefaults.data`.
If ApplyKind.Merge, a shallow merge will be performed between
`completionList.itemDefaults.data` and the completion's own data
using the following rules:
- If a completion's `data` field is not provided (or `null`), the
entire `data` field from `completionList.itemDefaults.data` will be
used as-is.
- If a completion's `data` field is provided, each field will
overwrite the field of the same name in
`completionList.itemDefaults.data` but no merging of nested fields
within that value will occur.
@since 3.18.0*/
#[serde(default)]
pub data: Option<ApplyKind>,
}
///Completion options.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
/**Most tools trigger completion request automatically without explicitly requesting
it using a keyboard shortcut (e.g. Ctrl+Space). Typically they do so when the user
starts to type an identifier. For example if the user types `c` in a JavaScript file
code complete will automatically pop up present `console` besides others as a
completion item. Characters that make up identifiers don't need to be listed here.
If code complete should automatically be trigger on characters not being valid inside
an identifier (for example `.` in JavaScript) list them in `triggerCharacters`.*/
#[serde(rename = "triggerCharacters")]
#[serde(default)]
pub trigger_characters: Option<Vec<String>>,
/**The list of all possible characters that commit a completion. This field can be used
if clients don't support individual commit characters per completion item. See
`ClientCapabilities.textDocument.completion.completionItem.commitCharactersSupport`
If a server provides both `allCommitCharacters` and commit characters on an individual
completion item the ones on the completion item win.
@since 3.2.0*/
#[serde(rename = "allCommitCharacters")]
#[serde(default)]
pub all_commit_characters: Option<Vec<String>>,
/**The server provides support to resolve additional
information for a completion item.*/
#[serde(rename = "resolveProvider")]
#[serde(default)]
pub resolve_provider: Option<bool>,
/**The server supports the following `CompletionItem` specific
capabilities.
@since 3.17.0*/
#[serde(rename = "completionItem")]
#[serde(default)]
pub completion_item: Option<ServerCompletionItemOptions>,
}
///Hover options.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct HoverOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
/**Additional information about the context in which a signature help request was triggered.
@since 3.15.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SignatureHelpContext {
///Action that caused signature help to be triggered.
#[serde(rename = "triggerKind")]
pub trigger_kind: SignatureHelpTriggerKind,
/**Character that caused signature help to be triggered.
This is undefined when `triggerKind !== SignatureHelpTriggerKind.TriggerCharacter`*/
#[serde(rename = "triggerCharacter")]
#[serde(default)]
pub trigger_character: Option<String>,
/**`true` if signature help was already showing when it was triggered.
Retriggers occurs when the signature help is already active and can be caused by actions such as
typing a trigger character, a cursor move, or document content changes.*/
#[serde(rename = "isRetrigger")]
pub is_retrigger: bool,
/**The currently active `SignatureHelp`.
The `activeSignatureHelp` has its `SignatureHelp.activeSignature` field updated based on
the user navigating through available signatures.*/
#[serde(rename = "activeSignatureHelp")]
#[serde(default)]
pub active_signature_help: Option<SignatureHelp>,
}
/**Represents the signature of something callable. A signature
can have a label, like a function-name, a doc-comment, and
a set of parameters.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SignatureInformation {
/**The label of this signature. Will be shown in
the UI.*/
pub label: String,
/**The human-readable doc-comment of this signature. Will be shown
in the UI but can be omitted.*/
#[serde(default)]
pub documentation: Option<MarkupContentOrString>,
///The parameters of this signature.
#[serde(default)]
pub parameters: Option<Vec<ParameterInformation>>,
/**The index of the active parameter.
If `null`, no parameter of the signature is active (for example a named
argument that does not match any declared parameters). This is only valid
if the client specifies the client capability
`textDocument.signatureHelp.noActiveParameterSupport === true`
If provided (or `null`), this is used in place of
`SignatureHelp.activeParameter`.
@since 3.16.0*/
#[serde(rename = "activeParameter")]
#[serde(default)]
pub active_parameter: Option<Option<Uinteger>>,
}
///Server Capabilities for a {@link SignatureHelpRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SignatureHelpOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
///List of characters that trigger signature help automatically.
#[serde(rename = "triggerCharacters")]
#[serde(default)]
pub trigger_characters: Option<Vec<String>>,
/**List of characters that re-trigger signature help.
These trigger characters are only active when signature help is already showing. All trigger characters
are also counted as re-trigger characters.
@since 3.15.0*/
#[serde(rename = "retriggerCharacters")]
#[serde(default)]
pub retrigger_characters: Option<Vec<String>>,
}
///Server Capabilities for a {@link DefinitionRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DefinitionOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
/**Value-object that contains additional information when
requesting references.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ReferenceContext {
///Include the declaration of the current symbol.
#[serde(rename = "includeDeclaration")]
pub include_declaration: bool,
}
///Reference options.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ReferenceOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
///Provider options for a {@link DocumentHighlightRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentHighlightOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
///A base for all symbol information.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct BaseSymbolInformation {
///The name of this symbol.
pub name: String,
///The kind of this symbol.
pub kind: SymbolKind,
/**Tags for this symbol.
@since 3.16.0*/
#[serde(default)]
pub tags: Option<Vec<SymbolTag>>,
/**The name of the symbol containing this symbol. This information is for
user interface purposes (e.g. to render a qualifier in the user interface
if necessary). It can't be used to re-infer a hierarchy for the document
symbols.*/
#[serde(rename = "containerName")]
#[serde(default)]
pub container_name: Option<String>,
}
///Provider options for a {@link DocumentSymbolRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentSymbolOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
/**A human-readable string that is shown when multiple outlines trees
are shown for the same document.
@since 3.16.0*/
#[serde(default)]
pub label: Option<String>,
}
/**Contains additional diagnostic information about the context in which
a {@link CodeActionProvider.provideCodeActions code action} is run.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeActionContext {
/**An array of diagnostics known on the client side overlapping the range provided to the
`textDocument/codeAction` request. They are provided so that the server knows which
errors are currently presented to the user for the given range. There is no guarantee
that these accurately reflect the error state of the resource. The primary parameter
to compute code actions is the provided range.*/
pub diagnostics: Vec<Diagnostic>,
/**Requested kind of actions to return.
Actions not of this kind are filtered out by the client before being shown. So servers
can omit computing them.*/
#[serde(default)]
pub only: Option<Vec<CodeActionKind>>,
/**The reason why code actions were requested.
@since 3.17.0*/
#[serde(rename = "triggerKind")]
#[serde(default)]
pub trigger_kind: Option<CodeActionTriggerKind>,
}
/**Captures why the code action is currently disabled.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeActionDisabled {
/**Human readable description of why the code action is currently disabled.
This is displayed in the code actions UI.*/
pub reason: String,
}
///Provider options for a {@link CodeActionRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeActionOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
/**CodeActionKinds that this server may return.
The list of kinds may be generic, such as `CodeActionKind.Refactor`, or the server
may list out every specific kind they provide.*/
#[serde(rename = "codeActionKinds")]
#[serde(default)]
pub code_action_kinds: Option<Vec<CodeActionKind>>,
/**Static documentation for a class of code actions.
Documentation from the provider should be shown in the code actions menu if either:
- Code actions of `kind` are requested by the editor. In this case, the editor will show the documentation that
most closely matches the requested code action kind. For example, if a provider has documentation for
both `Refactor` and `RefactorExtract`, when the user requests code actions for `RefactorExtract`,
the editor will use the documentation for `RefactorExtract` instead of the documentation for `Refactor`.
- Any code actions of `kind` are returned by the provider.
At most one documentation entry should be shown per provider.
@since 3.18.0*/
#[serde(default)]
pub documentation: Option<Vec<CodeActionKindDocumentation>>,
/**The server provides support to resolve additional
information for a code action.
@since 3.16.0*/
#[serde(rename = "resolveProvider")]
#[serde(default)]
pub resolve_provider: Option<bool>,
}
/**Location with only uri and does not include range.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LocationUriOnly {
pub uri: DocumentUri,
}
///Server capabilities for a {@link WorkspaceSymbolRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceSymbolOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
/**The server provides support to resolve additional
information for a workspace symbol.
@since 3.17.0*/
#[serde(rename = "resolveProvider")]
#[serde(default)]
pub resolve_provider: Option<bool>,
}
///Code Lens provider options of a {@link CodeLensRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeLensOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
///Code lens has a resolve provider as well.
#[serde(rename = "resolveProvider")]
#[serde(default)]
pub resolve_provider: Option<bool>,
}
///Provider options for a {@link DocumentLinkRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentLinkOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
///Document links have a resolve provider as well.
#[serde(rename = "resolveProvider")]
#[serde(default)]
pub resolve_provider: Option<bool>,
}
///Value-object describing what options formatting should use.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FormattingOptions {
///Size of a tab in spaces.
#[serde(rename = "tabSize")]
pub tab_size: Uinteger,
///Prefer spaces over tabs.
#[serde(rename = "insertSpaces")]
pub insert_spaces: bool,
/**Trim trailing whitespace on a line.
@since 3.15.0*/
#[serde(rename = "trimTrailingWhitespace")]
#[serde(default)]
pub trim_trailing_whitespace: Option<bool>,
/**Insert a newline character at the end of the file if one does not exist.
@since 3.15.0*/
#[serde(rename = "insertFinalNewline")]
#[serde(default)]
pub insert_final_newline: Option<bool>,
/**Trim all newlines after the final newline at the end of the file.
@since 3.15.0*/
#[serde(rename = "trimFinalNewlines")]
#[serde(default)]
pub trim_final_newlines: Option<bool>,
}
///Provider options for a {@link DocumentFormattingRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentFormattingOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
}
///Provider options for a {@link DocumentRangeFormattingRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentRangeFormattingOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
/**Whether the server supports formatting multiple ranges at once.
@since 3.18.0*/
#[serde(rename = "rangesSupport")]
#[serde(default)]
pub ranges_support: Option<bool>,
}
///Provider options for a {@link DocumentOnTypeFormattingRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentOnTypeFormattingOptions {
///A character on which formatting should be triggered, like `{`.
#[serde(rename = "firstTriggerCharacter")]
pub first_trigger_character: String,
///More trigger characters.
#[serde(rename = "moreTriggerCharacter")]
#[serde(default)]
pub more_trigger_character: Option<Vec<String>>,
}
///Provider options for a {@link RenameRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RenameOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
/**Renames should be checked and tested before being executed.
@since version 3.12.0*/
#[serde(rename = "prepareProvider")]
#[serde(default)]
pub prepare_provider: Option<bool>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PrepareRenamePlaceholder {
pub range: Range,
pub placeholder: String,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PrepareRenameDefaultBehavior {
#[serde(rename = "defaultBehavior")]
pub default_behavior: bool,
}
///The server capabilities of a {@link ExecuteCommandRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ExecuteCommandOptions {
#[serde(flatten)]
pub work_done_progress_options_mixin: WorkDoneProgressOptions,
///The commands to be executed on the server
pub commands: Vec<String>,
}
/**Additional data about a workspace edit.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceEditMetadata {
///Signal to the editor that this edit is a refactoring.
#[serde(rename = "isRefactoring")]
#[serde(default)]
pub is_refactoring: Option<bool>,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensLegend {
///The token types a server uses.
#[serde(rename = "tokenTypes")]
pub token_types: Vec<String>,
///The token modifiers a server uses.
#[serde(rename = "tokenModifiers")]
pub token_modifiers: Vec<String>,
}
/**Semantic tokens options to support deltas for full documents
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensFullDelta {
///The server supports deltas for full documents.
#[serde(default)]
pub delta: Option<bool>,
}
///A text document identifier to optionally denote a specific version of a text document.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct OptionalVersionedTextDocumentIdentifier {
#[serde(flatten)]
pub text_document_identifier_base: TextDocumentIdentifier,
/**The version number of this document. If a versioned text document identifier
is sent from the server to the client and the file is not open in the editor
(the server has not received an open notification before) the server can send
`null` to indicate that the version is unknown and the content on disk is the
truth (as specified with document content ownership).*/
pub version: Option<Integer>,
}
/**A special text edit with an additional change annotation.
@since 3.16.0.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AnnotatedTextEdit {
#[serde(flatten)]
pub text_edit_base: TextEdit,
///The actual identifier of the change annotation
#[serde(rename = "annotationId")]
pub annotation_id: ChangeAnnotationIdentifier,
}
/**An interactive text edit.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SnippetTextEdit {
///The range of the text document to be manipulated.
pub range: Range,
///The snippet to be inserted.
pub snippet: StringValue,
///The actual identifier of the snippet edit.
#[serde(rename = "annotationId")]
#[serde(default)]
pub annotation_id: Option<ChangeAnnotationIdentifier>,
}
///A generic resource operation.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ResourceOperation {
///The resource operation kind.
pub kind: String,
/**An optional annotation identifier describing the operation.
@since 3.16.0*/
#[serde(rename = "annotationId")]
#[serde(default)]
pub annotation_id: Option<ChangeAnnotationIdentifier>,
}
///Options to create a file.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CreateFileOptions {
///Overwrite existing file. Overwrite wins over `ignoreIfExists`
#[serde(default)]
pub overwrite: Option<bool>,
///Ignore if exists.
#[serde(rename = "ignoreIfExists")]
#[serde(default)]
pub ignore_if_exists: Option<bool>,
}
///Rename file options
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RenameFileOptions {
///Overwrite target if existing. Overwrite wins over `ignoreIfExists`
#[serde(default)]
pub overwrite: Option<bool>,
///Ignores if target exists.
#[serde(rename = "ignoreIfExists")]
#[serde(default)]
pub ignore_if_exists: Option<bool>,
}
///Delete file options
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DeleteFileOptions {
///Delete the content recursively if a folder is denoted.
#[serde(default)]
pub recursive: Option<bool>,
///Ignore the operation if the file doesn't exist.
#[serde(rename = "ignoreIfNotExists")]
#[serde(default)]
pub ignore_if_not_exists: Option<bool>,
}
/**A pattern to describe in which file operation requests or notifications
the server is interested in receiving.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FileOperationPattern {
#[doc = "The glob pattern to match. Glob patterns can have the following syntax:\n- `*` to match zero or more characters in a path segment\n- `?` to match on one character in a path segment\n- `**` to match any number of path segments, including none\n- `{}` to group sub patterns into an OR expression. (e.g. `**\u{200b}/*.{ts,js}` matches all TypeScript and JavaScript files)\n- `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)\n- `[!...]` to negate a range of characters to match in a path segment (e.g., `example.[!0-9]` to match on `example.a`, `example.b`, but not `example.0`)"]
pub glob: String,
/**Whether to match files or folders with this pattern.
Matches both if undefined.*/
#[serde(default)]
pub matches: Option<FileOperationPatternKind>,
///Additional options used during matching.
#[serde(default)]
pub options: Option<FileOperationPatternOptions>,
}
/**A full document diagnostic report for a workspace diagnostic result.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceFullDocumentDiagnosticReport {
#[serde(flatten)]
pub full_document_diagnostic_report_base: FullDocumentDiagnosticReport,
///The URI for which diagnostic information is reported.
pub uri: DocumentUri,
/**The version number for which the diagnostics are reported.
If the document is not marked as open `null` can be provided.*/
pub version: Option<Integer>,
}
/**An unchanged document diagnostic report for a workspace diagnostic result.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceUnchangedDocumentDiagnosticReport {
#[serde(flatten)]
pub unchanged_document_diagnostic_report_base: UnchangedDocumentDiagnosticReport,
///The URI for which diagnostic information is reported.
pub uri: DocumentUri,
/**The version number for which the diagnostics are reported.
If the document is not marked as open `null` can be provided.*/
pub version: Option<Integer>,
}
/**A notebook cell.
A cell's document URI must be unique across ALL notebook
cells and can therefore be used to uniquely identify a
notebook cell or the cell's text document.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookCell {
///The cell's kind
pub kind: NotebookCellKind,
/**The URI of the cell's text document
content.*/
pub document: DocumentUri,
/**Additional metadata stored with the cell.
Note: should always be an object literal (e.g. LSPObject)*/
#[serde(default)]
pub metadata: Option<LSPObject>,
/**Additional execution summary information
if supported by the client.*/
#[serde(rename = "executionSummary")]
#[serde(default)]
pub execution_summary: Option<ExecutionSummary>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentFilterWithNotebook {
/**The notebook to be synced If a string
value is provided it matches against the
notebook type. '*' matches every notebook.*/
pub notebook: NotebookDocumentFilterOrString,
///The cells of the matching notebook to be synced.
#[serde(default)]
pub cells: Option<Vec<NotebookCellLanguage>>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentFilterWithCells {
/**The notebook to be synced If a string
value is provided it matches against the
notebook type. '*' matches every notebook.*/
#[serde(default)]
pub notebook: Option<NotebookDocumentFilterOrString>,
///The cells of the matching notebook to be synced.
pub cells: Vec<NotebookCellLanguage>,
}
/**Cell changes to a notebook document.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentCellChanges {
/**Changes to the cell structure to add or
remove cells.*/
#[serde(default)]
pub structure: Option<NotebookDocumentCellChangeStructure>,
/**Changes to notebook cells properties like its
kind, execution summary or metadata.*/
#[serde(default)]
pub data: Option<Vec<NotebookCell>>,
///Changes to the text content of notebook cells.
#[serde(rename = "textContent")]
#[serde(default)]
pub text_content: Option<Vec<NotebookDocumentCellContentChanges>>,
}
/**Describes the currently selected completion item.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SelectedCompletionInfo {
///The range that will be replaced if this completion item is accepted.
pub range: Range,
///The text the range will be replaced with if this completion is accepted.
pub text: String,
}
/**Information about the client
@since 3.15.0
@since 3.18.0 ClientInfo type name added.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientInfo {
///The name of the client as defined by the client.
pub name: String,
///The client's version as defined by the client.
#[serde(default)]
pub version: Option<String>,
}
///Defines the capabilities provided by the client.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientCapabilities {
///Workspace specific client capabilities.
#[serde(default)]
pub workspace: Option<WorkspaceClientCapabilities>,
///Text document specific client capabilities.
#[serde(rename = "textDocument")]
#[serde(default)]
pub text_document: Option<TextDocumentClientCapabilities>,
/**Capabilities specific to the notebook document support.
@since 3.17.0*/
#[serde(rename = "notebookDocument")]
#[serde(default)]
pub notebook_document: Option<NotebookDocumentClientCapabilities>,
///Window specific client capabilities.
#[serde(default)]
pub window: Option<WindowClientCapabilities>,
/**General client capabilities.
@since 3.16.0*/
#[serde(default)]
pub general: Option<GeneralClientCapabilities>,
///Experimental client capabilities.
#[serde(default)]
pub experimental: Option<LSPAny>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentSyncOptions {
/**Open and close notifications are sent to the server. If omitted open close notification should not
be sent.*/
#[serde(rename = "openClose")]
#[serde(default)]
pub open_close: Option<bool>,
/**Change notifications are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full
and TextDocumentSyncKind.Incremental. If omitted it defaults to TextDocumentSyncKind.None.*/
#[serde(default)]
pub change: Option<TextDocumentSyncKind>,
/**If present will save notifications are sent to the server. If omitted the notification should not be
sent.*/
#[serde(rename = "willSave")]
#[serde(default)]
pub will_save: Option<bool>,
/**If present will save wait until requests are sent to the server. If omitted the request should not be
sent.*/
#[serde(rename = "willSaveWaitUntil")]
#[serde(default)]
pub will_save_wait_until: Option<bool>,
/**If present save notifications are sent to the server. If omitted the notification should not be
sent.*/
#[serde(default)]
pub save: Option<BooleanOrSaveOptions>,
}
/**Defines workspace specific capabilities of the server.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceOptions {
/**The server supports workspace folder.
@since 3.6.0*/
#[serde(rename = "workspaceFolders")]
#[serde(default)]
pub workspace_folders: Option<WorkspaceFoldersServerCapabilities>,
/**The server is interested in notifications/requests for operations on files.
@since 3.16.0*/
#[serde(rename = "fileOperations")]
#[serde(default)]
pub file_operations: Option<FileOperationOptions>,
/**The server supports the `workspace/textDocumentContent` request.
@since 3.18.0*/
#[serde(rename = "textDocumentContent")]
#[serde(default)]
pub text_document_content: Option<
TextDocumentContentOptionsOrTextDocumentContentRegistrationOptions,
>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentContentChangePartial {
///The range of the document that changed.
pub range: Range,
/**The optional length of the range that got replaced.
@deprecated use range instead.*/
#[serde(rename = "rangeLength")]
#[serde(default)]
pub range_length: Option<Uinteger>,
///The new text for the provided range.
pub text: String,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentContentChangeWholeDocument {
///The new text of the whole document.
pub text: String,
}
/**Structure to capture a description for an error code.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeDescription {
///An URI to open with more information about the diagnostic error.
pub href: URI,
}
/**Represents a related message and source code location for a diagnostic. This should be
used to point to code locations that cause or related to a diagnostics, e.g when duplicating
a symbol in a scope.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DiagnosticRelatedInformation {
///The location of this related diagnostic information.
pub location: Location,
///The message of this related diagnostic information.
pub message: String,
}
/**Edit range variant that includes ranges for insert and replace operations.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct EditRangeWithInsertReplace {
pub insert: Range,
pub replace: Range,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ServerCompletionItemOptions {
/**The server has support for completion item label
details (see also `CompletionItemLabelDetails`) when
receiving a completion item in a resolve call.
@since 3.17.0*/
#[serde(rename = "labelDetailsSupport")]
#[serde(default)]
pub label_details_support: Option<bool>,
}
/**@since 3.18.0
@deprecated use MarkupContent instead.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MarkedStringWithLanguage {
pub language: String,
pub value: String,
}
/**Represents a parameter of a callable-signature. A parameter can
have a label and a doc-comment.*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ParameterInformation {
/**The label of this parameter information.
Either a string or an inclusive start and exclusive end offsets within its containing
signature label. (see SignatureInformation.label). The offsets are based on a UTF-16
string representation as `Position` and `Range` does.
To avoid ambiguities a server should use the [start, end] offset value instead of using
a substring. Whether a client support this is controlled via `labelOffsetSupport` client
capability.
*Note*: a label of type string should be a substring of its containing signature label.
Its intended use case is to highlight the parameter label part in the `SignatureInformation.label`.*/
pub label: StringOrTupleOfUintegerAndUinteger,
/**The human-readable doc-comment of this parameter. Will be shown
in the UI but can be omitted.*/
#[serde(default)]
pub documentation: Option<MarkupContentOrString>,
}
/**Documentation for a class of code actions.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeActionKindDocumentation {
/**The kind of the code action being documented.
If the kind is generic, such as `CodeActionKind.Refactor`, the documentation will be shown whenever any
refactorings are returned. If the kind if more specific, such as `CodeActionKind.RefactorExtract`, the
documentation will only be shown when extract refactoring code actions are returned.*/
pub kind: CodeActionKind,
/**Command that is ued to display the documentation to the user.
The title of this documentation code action is taken from {@linkcode Command.title}*/
pub command: Command,
}
/**A notebook cell text document filter denotes a cell text
document by different properties.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookCellTextDocumentFilter {
/**A filter that matches against the notebook
containing the notebook cell. If a string
value is provided it matches against the
notebook type. '*' matches every notebook.*/
pub notebook: NotebookDocumentFilterOrString,
/**A language id like `python`.
Will be matched against the language id of the
notebook cell document. '*' matches every language.*/
#[serde(default)]
pub language: Option<String>,
}
/**Matching options for the file operation pattern.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FileOperationPatternOptions {
///The pattern should be matched ignoring casing.
#[serde(rename = "ignoreCase")]
#[serde(default)]
pub ignore_case: Option<bool>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ExecutionSummary {
/**A strict monotonically increasing value
indicating the execution order of a cell
inside a notebook.*/
#[serde(rename = "executionOrder")]
pub execution_order: Uinteger,
/**Whether the execution was successful or
not if known by the client.*/
#[serde(default)]
pub success: Option<bool>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookCellLanguage {
pub language: String,
}
/**Structural changes to cells in a notebook document.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentCellChangeStructure {
///The change to the cell array.
pub array: NotebookCellArrayChange,
///Additional opened cell text documents.
#[serde(rename = "didOpen")]
#[serde(default)]
pub did_open: Option<Vec<TextDocumentItem>>,
///Additional closed cell text documents.
#[serde(rename = "didClose")]
#[serde(default)]
pub did_close: Option<Vec<TextDocumentIdentifier>>,
}
/**Content changes to a cell in a notebook document.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentCellContentChanges {
pub document: VersionedTextDocumentIdentifier,
pub changes: Vec<TextDocumentContentChangeEvent>,
}
///Workspace specific client capabilities.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceClientCapabilities {
/**The client supports applying batch edits
to the workspace by supporting the request
'workspace/applyEdit'*/
#[serde(rename = "applyEdit")]
#[serde(default)]
pub apply_edit: Option<bool>,
///Capabilities specific to `WorkspaceEdit`s.
#[serde(rename = "workspaceEdit")]
#[serde(default)]
pub workspace_edit: Option<WorkspaceEditClientCapabilities>,
///Capabilities specific to the `workspace/didChangeConfiguration` notification.
#[serde(rename = "didChangeConfiguration")]
#[serde(default)]
pub did_change_configuration: Option<DidChangeConfigurationClientCapabilities>,
///Capabilities specific to the `workspace/didChangeWatchedFiles` notification.
#[serde(rename = "didChangeWatchedFiles")]
#[serde(default)]
pub did_change_watched_files: Option<DidChangeWatchedFilesClientCapabilities>,
///Capabilities specific to the `workspace/symbol` request.
#[serde(default)]
pub symbol: Option<WorkspaceSymbolClientCapabilities>,
///Capabilities specific to the `workspace/executeCommand` request.
#[serde(rename = "executeCommand")]
#[serde(default)]
pub execute_command: Option<ExecuteCommandClientCapabilities>,
/**The client has support for workspace folders.
@since 3.6.0*/
#[serde(rename = "workspaceFolders")]
#[serde(default)]
pub workspace_folders: Option<bool>,
/**The client supports `workspace/configuration` requests.
@since 3.6.0*/
#[serde(default)]
pub configuration: Option<bool>,
/**Capabilities specific to the semantic token requests scoped to the
workspace.
@since 3.16.0.*/
#[serde(rename = "semanticTokens")]
#[serde(default)]
pub semantic_tokens: Option<SemanticTokensWorkspaceClientCapabilities>,
/**Capabilities specific to the code lens requests scoped to the
workspace.
@since 3.16.0.*/
#[serde(rename = "codeLens")]
#[serde(default)]
pub code_lens: Option<CodeLensWorkspaceClientCapabilities>,
/**The client has support for file notifications/requests for user operations on files.
Since 3.16.0*/
#[serde(rename = "fileOperations")]
#[serde(default)]
pub file_operations: Option<FileOperationClientCapabilities>,
/**Capabilities specific to the inline values requests scoped to the
workspace.
@since 3.17.0.*/
#[serde(rename = "inlineValue")]
#[serde(default)]
pub inline_value: Option<InlineValueWorkspaceClientCapabilities>,
/**Capabilities specific to the inlay hint requests scoped to the
workspace.
@since 3.17.0.*/
#[serde(rename = "inlayHint")]
#[serde(default)]
pub inlay_hint: Option<InlayHintWorkspaceClientCapabilities>,
/**Capabilities specific to the diagnostic requests scoped to the
workspace.
@since 3.17.0.*/
#[serde(default)]
pub diagnostics: Option<DiagnosticWorkspaceClientCapabilities>,
/**Capabilities specific to the folding range requests scoped to the workspace.
@since 3.18.0*/
#[serde(rename = "foldingRange")]
#[serde(default)]
pub folding_range: Option<FoldingRangeWorkspaceClientCapabilities>,
/**Capabilities specific to the `workspace/textDocumentContent` request.
@since 3.18.0*/
#[serde(rename = "textDocumentContent")]
#[serde(default)]
pub text_document_content: Option<TextDocumentContentClientCapabilities>,
}
///Text document specific client capabilities.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentClientCapabilities {
///Defines which synchronization capabilities the client supports.
#[serde(default)]
pub synchronization: Option<TextDocumentSyncClientCapabilities>,
/**Defines which filters the client supports.
@since 3.18.0*/
#[serde(default)]
pub filters: Option<TextDocumentFilterClientCapabilities>,
///Capabilities specific to the `textDocument/completion` request.
#[serde(default)]
pub completion: Option<CompletionClientCapabilities>,
///Capabilities specific to the `textDocument/hover` request.
#[serde(default)]
pub hover: Option<HoverClientCapabilities>,
///Capabilities specific to the `textDocument/signatureHelp` request.
#[serde(rename = "signatureHelp")]
#[serde(default)]
pub signature_help: Option<SignatureHelpClientCapabilities>,
/**Capabilities specific to the `textDocument/declaration` request.
@since 3.14.0*/
#[serde(default)]
pub declaration: Option<DeclarationClientCapabilities>,
///Capabilities specific to the `textDocument/definition` request.
#[serde(default)]
pub definition: Option<DefinitionClientCapabilities>,
/**Capabilities specific to the `textDocument/typeDefinition` request.
@since 3.6.0*/
#[serde(rename = "typeDefinition")]
#[serde(default)]
pub type_definition: Option<TypeDefinitionClientCapabilities>,
/**Capabilities specific to the `textDocument/implementation` request.
@since 3.6.0*/
#[serde(default)]
pub implementation: Option<ImplementationClientCapabilities>,
///Capabilities specific to the `textDocument/references` request.
#[serde(default)]
pub references: Option<ReferenceClientCapabilities>,
///Capabilities specific to the `textDocument/documentHighlight` request.
#[serde(rename = "documentHighlight")]
#[serde(default)]
pub document_highlight: Option<DocumentHighlightClientCapabilities>,
///Capabilities specific to the `textDocument/documentSymbol` request.
#[serde(rename = "documentSymbol")]
#[serde(default)]
pub document_symbol: Option<DocumentSymbolClientCapabilities>,
///Capabilities specific to the `textDocument/codeAction` request.
#[serde(rename = "codeAction")]
#[serde(default)]
pub code_action: Option<CodeActionClientCapabilities>,
///Capabilities specific to the `textDocument/codeLens` request.
#[serde(rename = "codeLens")]
#[serde(default)]
pub code_lens: Option<CodeLensClientCapabilities>,
///Capabilities specific to the `textDocument/documentLink` request.
#[serde(rename = "documentLink")]
#[serde(default)]
pub document_link: Option<DocumentLinkClientCapabilities>,
/**Capabilities specific to the `textDocument/documentColor` and the
`textDocument/colorPresentation` request.
@since 3.6.0*/
#[serde(rename = "colorProvider")]
#[serde(default)]
pub color_provider: Option<DocumentColorClientCapabilities>,
///Capabilities specific to the `textDocument/formatting` request.
#[serde(default)]
pub formatting: Option<DocumentFormattingClientCapabilities>,
///Capabilities specific to the `textDocument/rangeFormatting` request.
#[serde(rename = "rangeFormatting")]
#[serde(default)]
pub range_formatting: Option<DocumentRangeFormattingClientCapabilities>,
///Capabilities specific to the `textDocument/onTypeFormatting` request.
#[serde(rename = "onTypeFormatting")]
#[serde(default)]
pub on_type_formatting: Option<DocumentOnTypeFormattingClientCapabilities>,
///Capabilities specific to the `textDocument/rename` request.
#[serde(default)]
pub rename: Option<RenameClientCapabilities>,
/**Capabilities specific to the `textDocument/foldingRange` request.
@since 3.10.0*/
#[serde(rename = "foldingRange")]
#[serde(default)]
pub folding_range: Option<FoldingRangeClientCapabilities>,
/**Capabilities specific to the `textDocument/selectionRange` request.
@since 3.15.0*/
#[serde(rename = "selectionRange")]
#[serde(default)]
pub selection_range: Option<SelectionRangeClientCapabilities>,
///Capabilities specific to the `textDocument/publishDiagnostics` notification.
#[serde(rename = "publishDiagnostics")]
#[serde(default)]
pub publish_diagnostics: Option<PublishDiagnosticsClientCapabilities>,
/**Capabilities specific to the various call hierarchy requests.
@since 3.16.0*/
#[serde(rename = "callHierarchy")]
#[serde(default)]
pub call_hierarchy: Option<CallHierarchyClientCapabilities>,
/**Capabilities specific to the various semantic token request.
@since 3.16.0*/
#[serde(rename = "semanticTokens")]
#[serde(default)]
pub semantic_tokens: Option<SemanticTokensClientCapabilities>,
/**Capabilities specific to the `textDocument/linkedEditingRange` request.
@since 3.16.0*/
#[serde(rename = "linkedEditingRange")]
#[serde(default)]
pub linked_editing_range: Option<LinkedEditingRangeClientCapabilities>,
/**Client capabilities specific to the `textDocument/moniker` request.
@since 3.16.0*/
#[serde(default)]
pub moniker: Option<MonikerClientCapabilities>,
/**Capabilities specific to the various type hierarchy requests.
@since 3.17.0*/
#[serde(rename = "typeHierarchy")]
#[serde(default)]
pub type_hierarchy: Option<TypeHierarchyClientCapabilities>,
/**Capabilities specific to the `textDocument/inlineValue` request.
@since 3.17.0*/
#[serde(rename = "inlineValue")]
#[serde(default)]
pub inline_value: Option<InlineValueClientCapabilities>,
/**Capabilities specific to the `textDocument/inlayHint` request.
@since 3.17.0*/
#[serde(rename = "inlayHint")]
#[serde(default)]
pub inlay_hint: Option<InlayHintClientCapabilities>,
/**Capabilities specific to the diagnostic pull model.
@since 3.17.0*/
#[serde(default)]
pub diagnostic: Option<DiagnosticClientCapabilities>,
/**Client capabilities specific to inline completions.
@since 3.18.0*/
#[serde(rename = "inlineCompletion")]
#[serde(default)]
pub inline_completion: Option<InlineCompletionClientCapabilities>,
}
/**Capabilities specific to the notebook document support.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentClientCapabilities {
/**Capabilities specific to notebook document synchronization
@since 3.17.0*/
pub synchronization: NotebookDocumentSyncClientCapabilities,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WindowClientCapabilities {
/**It indicates whether the client supports server initiated
progress using the `window/workDoneProgress/create` request.
The capability also controls Whether client supports handling
of progress notifications. If set servers are allowed to report a
`workDoneProgress` property in the request specific server
capabilities.
@since 3.15.0*/
#[serde(rename = "workDoneProgress")]
#[serde(default)]
pub work_done_progress: Option<bool>,
/**Capabilities specific to the showMessage request.
@since 3.16.0*/
#[serde(rename = "showMessage")]
#[serde(default)]
pub show_message: Option<ShowMessageRequestClientCapabilities>,
/**Capabilities specific to the showDocument request.
@since 3.16.0*/
#[serde(rename = "showDocument")]
#[serde(default)]
pub show_document: Option<ShowDocumentClientCapabilities>,
}
/**General client capabilities.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GeneralClientCapabilities {
/**Client capability that signals how the client
handles stale requests (e.g. a request
for which the client will not process the response
anymore since the information is outdated).
@since 3.17.0*/
#[serde(rename = "staleRequestSupport")]
#[serde(default)]
pub stale_request_support: Option<StaleRequestSupportOptions>,
/**Client capabilities specific to regular expressions.
@since 3.16.0*/
#[serde(rename = "regularExpressions")]
#[serde(default)]
pub regular_expressions: Option<RegularExpressionsClientCapabilities>,
/**Client capabilities specific to the client's markdown parser.
@since 3.16.0*/
#[serde(default)]
pub markdown: Option<MarkdownClientCapabilities>,
/**The position encodings supported by the client. Client and server
have to agree on the same position encoding to ensure that offsets
(e.g. character position in a line) are interpreted the same on both
sides.
To keep the protocol backwards compatible the following applies: if
the value 'utf-16' is missing from the array of position encodings
servers can assume that the client supports UTF-16. UTF-16 is
therefore a mandatory encoding.
If omitted it defaults to ['utf-16'].
Implementation considerations: since the conversion from one encoding
into another requires the content of the file / line the conversion
is best done where the file is read which is usually on the server
side.
@since 3.17.0*/
#[serde(rename = "positionEncodings")]
#[serde(default)]
pub position_encodings: Option<Vec<PositionEncodingKind>>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceFoldersServerCapabilities {
///The server has support for workspace folders
#[serde(default)]
pub supported: Option<bool>,
/**Whether the server wants to receive workspace folder
change notifications.
If a string is provided the string is treated as an ID
under which the notification is registered on the client
side. The ID can be used to unregister for these events
using the `client/unregisterCapability` request.*/
#[serde(rename = "changeNotifications")]
#[serde(default)]
pub change_notifications: Option<BooleanOrString>,
}
/**Options for notifications/requests for user operations on files.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FileOperationOptions {
///The server is interested in receiving didCreateFiles notifications.
#[serde(rename = "didCreate")]
#[serde(default)]
pub did_create: Option<FileOperationRegistrationOptions>,
///The server is interested in receiving willCreateFiles requests.
#[serde(rename = "willCreate")]
#[serde(default)]
pub will_create: Option<FileOperationRegistrationOptions>,
///The server is interested in receiving didRenameFiles notifications.
#[serde(rename = "didRename")]
#[serde(default)]
pub did_rename: Option<FileOperationRegistrationOptions>,
///The server is interested in receiving willRenameFiles requests.
#[serde(rename = "willRename")]
#[serde(default)]
pub will_rename: Option<FileOperationRegistrationOptions>,
///The server is interested in receiving didDeleteFiles file notifications.
#[serde(rename = "didDelete")]
#[serde(default)]
pub did_delete: Option<FileOperationRegistrationOptions>,
///The server is interested in receiving willDeleteFiles file requests.
#[serde(rename = "willDelete")]
#[serde(default)]
pub will_delete: Option<FileOperationRegistrationOptions>,
}
/**A relative pattern is a helper to construct glob patterns that are matched
relatively to a base URI. The common value for a `baseUri` is a workspace
folder root, but it can be another absolute URI as well.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RelativePattern {
/**A workspace folder or a base URI to which this pattern will be matched
against relatively.*/
#[serde(rename = "baseUri")]
pub base_uri: UriOrWorkspaceFolder,
///The actual glob pattern;
pub pattern: Pattern,
}
/**A document filter where `language` is required field.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentFilterLanguage {
///A language id, like `typescript`.
pub language: String,
///A Uri {@link Uri.scheme scheme}, like `file` or `untitled`.
#[serde(default)]
pub scheme: Option<String>,
#[doc = "A glob pattern, like **\u{200b}/*.{ts,js}. See TextDocumentFilter for examples.\n\n@since 3.18.0 - support for relative patterns. Whether clients support\nrelative patterns depends on the client capability\n`textDocuments.filters.relativePatternSupport`."]
#[serde(default)]
pub pattern: Option<GlobPattern>,
}
/**A document filter where `scheme` is required field.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentFilterScheme {
///A language id, like `typescript`.
#[serde(default)]
pub language: Option<String>,
///A Uri {@link Uri.scheme scheme}, like `file` or `untitled`.
pub scheme: String,
#[doc = "A glob pattern, like **\u{200b}/*.{ts,js}. See TextDocumentFilter for examples.\n\n@since 3.18.0 - support for relative patterns. Whether clients support\nrelative patterns depends on the client capability\n`textDocuments.filters.relativePatternSupport`."]
#[serde(default)]
pub pattern: Option<GlobPattern>,
}
/**A document filter where `pattern` is required field.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentFilterPattern {
///A language id, like `typescript`.
#[serde(default)]
pub language: Option<String>,
///A Uri {@link Uri.scheme scheme}, like `file` or `untitled`.
#[serde(default)]
pub scheme: Option<String>,
#[doc = "A glob pattern, like **\u{200b}/*.{ts,js}. See TextDocumentFilter for examples.\n\n@since 3.18.0 - support for relative patterns. Whether clients support\nrelative patterns depends on the client capability\n`textDocuments.filters.relativePatternSupport`."]
pub pattern: GlobPattern,
}
/**A notebook document filter where `notebookType` is required field.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentFilterNotebookType {
///The type of the enclosing notebook.
#[serde(rename = "notebookType")]
pub notebook_type: String,
///A Uri {@link Uri.scheme scheme}, like `file` or `untitled`.
#[serde(default)]
pub scheme: Option<String>,
///A glob pattern.
#[serde(default)]
pub pattern: Option<GlobPattern>,
}
/**A notebook document filter where `scheme` is required field.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentFilterScheme {
///The type of the enclosing notebook.
#[serde(rename = "notebookType")]
#[serde(default)]
pub notebook_type: Option<String>,
///A Uri {@link Uri.scheme scheme}, like `file` or `untitled`.
pub scheme: String,
///A glob pattern.
#[serde(default)]
pub pattern: Option<GlobPattern>,
}
/**A notebook document filter where `pattern` is required field.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentFilterPattern {
///The type of the enclosing notebook.
#[serde(rename = "notebookType")]
#[serde(default)]
pub notebook_type: Option<String>,
///A Uri {@link Uri.scheme scheme}, like `file` or `untitled`.
#[serde(default)]
pub scheme: Option<String>,
///A glob pattern.
pub pattern: GlobPattern,
}
/**A change describing how to move a `NotebookCell`
array from state S to S'.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookCellArrayChange {
///The start oftest of the cell that changed.
pub start: Uinteger,
///The deleted cells
#[serde(rename = "deleteCount")]
pub delete_count: Uinteger,
///The new cells, if any
#[serde(default)]
pub cells: Option<Vec<NotebookCell>>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceEditClientCapabilities {
///The client supports versioned document changes in `WorkspaceEdit`s
#[serde(rename = "documentChanges")]
#[serde(default)]
pub document_changes: Option<bool>,
/**The resource operations the client supports. Clients should at least
support 'create', 'rename' and 'delete' files and folders.
@since 3.13.0*/
#[serde(rename = "resourceOperations")]
#[serde(default)]
pub resource_operations: Option<Vec<ResourceOperationKind>>,
/**The failure handling strategy of a client if applying the workspace edit
fails.
@since 3.13.0*/
#[serde(rename = "failureHandling")]
#[serde(default)]
pub failure_handling: Option<FailureHandlingKind>,
/**Whether the client normalizes line endings to the client specific
setting.
If set to `true` the client will normalize line ending characters
in a workspace edit to the client-specified new line
character.
@since 3.16.0*/
#[serde(rename = "normalizesLineEndings")]
#[serde(default)]
pub normalizes_line_endings: Option<bool>,
/**Whether the client in general supports change annotations on text edits,
create file, rename file and delete file changes.
@since 3.16.0*/
#[serde(rename = "changeAnnotationSupport")]
#[serde(default)]
pub change_annotation_support: Option<ChangeAnnotationsSupportOptions>,
/**Whether the client supports `WorkspaceEditMetadata` in `WorkspaceEdit`s.
@since 3.18.0*/
#[serde(rename = "metadataSupport")]
#[serde(default)]
pub metadata_support: Option<bool>,
/**Whether the client supports snippets as text edits.
@since 3.18.0*/
#[serde(rename = "snippetEditSupport")]
#[serde(default)]
pub snippet_edit_support: Option<bool>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidChangeConfigurationClientCapabilities {
///Did change configuration notification supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DidChangeWatchedFilesClientCapabilities {
/**Did change watched files notification supports dynamic registration. Please note
that the current protocol doesn't support static configuration for file changes
from the server side.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**Whether the client has support for {@link RelativePattern relative pattern}
or not.
@since 3.17.0*/
#[serde(rename = "relativePatternSupport")]
#[serde(default)]
pub relative_pattern_support: Option<bool>,
}
///Client capabilities for a {@link WorkspaceSymbolRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceSymbolClientCapabilities {
///Symbol request supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
///Specific capabilities for the `SymbolKind` in the `workspace/symbol` request.
#[serde(rename = "symbolKind")]
#[serde(default)]
pub symbol_kind: Option<ClientSymbolKindOptions>,
/**The client supports tags on `SymbolInformation`.
Clients supporting tags have to handle unknown tags gracefully.
@since 3.16.0*/
#[serde(rename = "tagSupport")]
#[serde(default)]
pub tag_support: Option<ClientSymbolTagOptions>,
/**The client support partial workspace symbols. The client will send the
request `workspaceSymbol/resolve` to the server to resolve additional
properties.
@since 3.17.0*/
#[serde(rename = "resolveSupport")]
#[serde(default)]
pub resolve_support: Option<ClientSymbolResolveOptions>,
}
///The client capabilities of a {@link ExecuteCommandRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ExecuteCommandClientCapabilities {
///Execute command supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensWorkspaceClientCapabilities {
/**Whether the client implementation supports a refresh request sent from
the server to the client.
Note that this event is global and will force the client to refresh all
semantic tokens currently shown. It should be used with absolute care
and is useful for situation where a server for example detects a project
wide change that requires such a calculation.*/
#[serde(rename = "refreshSupport")]
#[serde(default)]
pub refresh_support: Option<bool>,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeLensWorkspaceClientCapabilities {
/**Whether the client implementation supports a refresh request sent from the
server to the client.
Note that this event is global and will force the client to refresh all
code lenses currently shown. It should be used with absolute care and is
useful for situation where a server for example detect a project wide
change that requires such a calculation.*/
#[serde(rename = "refreshSupport")]
#[serde(default)]
pub refresh_support: Option<bool>,
}
/**Capabilities relating to events from file operations by the user in the client.
These events do not come from the file system, they come from user operations
like renaming a file in the UI.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FileOperationClientCapabilities {
///Whether the client supports dynamic registration for file requests/notifications.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
///The client has support for sending didCreateFiles notifications.
#[serde(rename = "didCreate")]
#[serde(default)]
pub did_create: Option<bool>,
///The client has support for sending willCreateFiles requests.
#[serde(rename = "willCreate")]
#[serde(default)]
pub will_create: Option<bool>,
///The client has support for sending didRenameFiles notifications.
#[serde(rename = "didRename")]
#[serde(default)]
pub did_rename: Option<bool>,
///The client has support for sending willRenameFiles requests.
#[serde(rename = "willRename")]
#[serde(default)]
pub will_rename: Option<bool>,
///The client has support for sending didDeleteFiles notifications.
#[serde(rename = "didDelete")]
#[serde(default)]
pub did_delete: Option<bool>,
///The client has support for sending willDeleteFiles requests.
#[serde(rename = "willDelete")]
#[serde(default)]
pub will_delete: Option<bool>,
}
/**Client workspace capabilities specific to inline values.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineValueWorkspaceClientCapabilities {
/**Whether the client implementation supports a refresh request sent from the
server to the client.
Note that this event is global and will force the client to refresh all
inline values currently shown. It should be used with absolute care and is
useful for situation where a server for example detects a project wide
change that requires such a calculation.*/
#[serde(rename = "refreshSupport")]
#[serde(default)]
pub refresh_support: Option<bool>,
}
/**Client workspace capabilities specific to inlay hints.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlayHintWorkspaceClientCapabilities {
/**Whether the client implementation supports a refresh request sent from
the server to the client.
Note that this event is global and will force the client to refresh all
inlay hints currently shown. It should be used with absolute care and
is useful for situation where a server for example detects a project wide
change that requires such a calculation.*/
#[serde(rename = "refreshSupport")]
#[serde(default)]
pub refresh_support: Option<bool>,
}
/**Workspace client capabilities specific to diagnostic pull requests.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DiagnosticWorkspaceClientCapabilities {
/**Whether the client implementation supports a refresh request sent from
the server to the client.
Note that this event is global and will force the client to refresh all
pulled diagnostics currently shown. It should be used with absolute care and
is useful for situation where a server for example detects a project wide
change that requires such a calculation.*/
#[serde(rename = "refreshSupport")]
#[serde(default)]
pub refresh_support: Option<bool>,
}
/**Client workspace capabilities specific to folding ranges
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FoldingRangeWorkspaceClientCapabilities {
/**Whether the client implementation supports a refresh request sent from the
server to the client.
Note that this event is global and will force the client to refresh all
folding ranges currently shown. It should be used with absolute care and is
useful for situation where a server for example detects a project wide
change that requires such a calculation.
@since 3.18.0*/
#[serde(rename = "refreshSupport")]
#[serde(default)]
pub refresh_support: Option<bool>,
}
/**Client capabilities for a text document content provider.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentContentClientCapabilities {
///Text document content provider supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentSyncClientCapabilities {
///Whether text document synchronization supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
///The client supports sending will save notifications.
#[serde(rename = "willSave")]
#[serde(default)]
pub will_save: Option<bool>,
/**The client supports sending a will save request and
waits for a response providing text edits which will
be applied to the document before it is saved.*/
#[serde(rename = "willSaveWaitUntil")]
#[serde(default)]
pub will_save_wait_until: Option<bool>,
///The client supports did save notifications.
#[serde(rename = "didSave")]
#[serde(default)]
pub did_save: Option<bool>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TextDocumentFilterClientCapabilities {
/**The client supports Relative Patterns.
@since 3.18.0*/
#[serde(rename = "relativePatternSupport")]
#[serde(default)]
pub relative_pattern_support: Option<bool>,
}
///Completion client capabilities
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionClientCapabilities {
///Whether completion supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**The client supports the following `CompletionItem` specific
capabilities.*/
#[serde(rename = "completionItem")]
#[serde(default)]
pub completion_item: Option<ClientCompletionItemOptions>,
///The client supports the following completion item kinds.
#[serde(rename = "completionItemKind")]
#[serde(default)]
pub completion_item_kind: Option<ClientCompletionItemOptionsKind>,
/**Defines how the client handles whitespace and indentation
when accepting a completion item that uses multi line
text in either `insertText` or `textEdit`.
@since 3.17.0*/
#[serde(rename = "insertTextMode")]
#[serde(default)]
pub insert_text_mode: Option<InsertTextMode>,
/**The client supports to send additional context information for a
`textDocument/completion` request.*/
#[serde(rename = "contextSupport")]
#[serde(default)]
pub context_support: Option<bool>,
/**The client supports the following `CompletionList` specific
capabilities.
@since 3.17.0*/
#[serde(rename = "completionList")]
#[serde(default)]
pub completion_list: Option<CompletionListCapabilities>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct HoverClientCapabilities {
///Whether hover supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**Client supports the following content formats for the content
property. The order describes the preferred format of the client.*/
#[serde(rename = "contentFormat")]
#[serde(default)]
pub content_format: Option<Vec<MarkupKind>>,
}
///Client Capabilities for a {@link SignatureHelpRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SignatureHelpClientCapabilities {
///Whether signature help supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**The client supports the following `SignatureInformation`
specific properties.*/
#[serde(rename = "signatureInformation")]
#[serde(default)]
pub signature_information: Option<ClientSignatureInformationOptions>,
/**The client supports to send additional context information for a
`textDocument/signatureHelp` request. A client that opts into
contextSupport will also support the `retriggerCharacters` on
`SignatureHelpOptions`.
@since 3.15.0*/
#[serde(rename = "contextSupport")]
#[serde(default)]
pub context_support: Option<bool>,
}
///@since 3.14.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DeclarationClientCapabilities {
/**Whether declaration supports dynamic registration. If this is set to `true`
the client supports the new `DeclarationRegistrationOptions` return value
for the corresponding server capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
///The client supports additional metadata in the form of declaration links.
#[serde(rename = "linkSupport")]
#[serde(default)]
pub link_support: Option<bool>,
}
///Client Capabilities for a {@link DefinitionRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DefinitionClientCapabilities {
///Whether definition supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**The client supports additional metadata in the form of definition links.
@since 3.14.0*/
#[serde(rename = "linkSupport")]
#[serde(default)]
pub link_support: Option<bool>,
}
///Since 3.6.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TypeDefinitionClientCapabilities {
/**Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `TypeDefinitionRegistrationOptions` return value
for the corresponding server capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**The client supports additional metadata in the form of definition links.
Since 3.14.0*/
#[serde(rename = "linkSupport")]
#[serde(default)]
pub link_support: Option<bool>,
}
///@since 3.6.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ImplementationClientCapabilities {
/**Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `ImplementationRegistrationOptions` return value
for the corresponding server capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**The client supports additional metadata in the form of definition links.
@since 3.14.0*/
#[serde(rename = "linkSupport")]
#[serde(default)]
pub link_support: Option<bool>,
}
///Client Capabilities for a {@link ReferencesRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ReferenceClientCapabilities {
///Whether references supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
///Client Capabilities for a {@link DocumentHighlightRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentHighlightClientCapabilities {
///Whether document highlight supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
///Client Capabilities for a {@link DocumentSymbolRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentSymbolClientCapabilities {
///Whether document symbol supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**Specific capabilities for the `SymbolKind` in the
`textDocument/documentSymbol` request.*/
#[serde(rename = "symbolKind")]
#[serde(default)]
pub symbol_kind: Option<ClientSymbolKindOptions>,
///The client supports hierarchical document symbols.
#[serde(rename = "hierarchicalDocumentSymbolSupport")]
#[serde(default)]
pub hierarchical_document_symbol_support: Option<bool>,
/**The client supports tags on `SymbolInformation`. Tags are supported on
`DocumentSymbol` if `hierarchicalDocumentSymbolSupport` is set to true.
Clients supporting tags have to handle unknown tags gracefully.
@since 3.16.0*/
#[serde(rename = "tagSupport")]
#[serde(default)]
pub tag_support: Option<ClientSymbolTagOptions>,
/**The client supports an additional label presented in the UI when
registering a document symbol provider.
@since 3.16.0*/
#[serde(rename = "labelSupport")]
#[serde(default)]
pub label_support: Option<bool>,
}
///The Client Capabilities of a {@link CodeActionRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeActionClientCapabilities {
///Whether code action supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**The client support code action literals of type `CodeAction` as a valid
response of the `textDocument/codeAction` request. If the property is not
set the request can only return `Command` literals.
@since 3.8.0*/
#[serde(rename = "codeActionLiteralSupport")]
#[serde(default)]
pub code_action_literal_support: Option<ClientCodeActionLiteralOptions>,
/**Whether code action supports the `isPreferred` property.
@since 3.15.0*/
#[serde(rename = "isPreferredSupport")]
#[serde(default)]
pub is_preferred_support: Option<bool>,
/**Whether code action supports the `disabled` property.
@since 3.16.0*/
#[serde(rename = "disabledSupport")]
#[serde(default)]
pub disabled_support: Option<bool>,
/**Whether code action supports the `data` property which is
preserved between a `textDocument/codeAction` and a
`codeAction/resolve` request.
@since 3.16.0*/
#[serde(rename = "dataSupport")]
#[serde(default)]
pub data_support: Option<bool>,
/**Whether the client supports resolving additional code action
properties via a separate `codeAction/resolve` request.
@since 3.16.0*/
#[serde(rename = "resolveSupport")]
#[serde(default)]
pub resolve_support: Option<ClientCodeActionResolveOptions>,
/**Whether the client honors the change annotations in
text edits and resource operations returned via the
`CodeAction#edit` property by for example presenting
the workspace edit in the user interface and asking
for confirmation.
@since 3.16.0*/
#[serde(rename = "honorsChangeAnnotations")]
#[serde(default)]
pub honors_change_annotations: Option<bool>,
/**Whether the client supports documentation for a class of
code actions.
@since 3.18.0*/
#[serde(rename = "documentationSupport")]
#[serde(default)]
pub documentation_support: Option<bool>,
/**Client supports the tag property on a code action. Clients
supporting tags have to handle unknown tags gracefully.
@since 3.18.0 - proposed*/
#[serde(rename = "tagSupport")]
#[serde(default)]
pub tag_support: Option<CodeActionTagOptions>,
}
///The client capabilities of a {@link CodeLensRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeLensClientCapabilities {
///Whether code lens supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**Whether the client supports resolving additional code lens
properties via a separate `codeLens/resolve` request.
@since 3.18.0*/
#[serde(rename = "resolveSupport")]
#[serde(default)]
pub resolve_support: Option<ClientCodeLensResolveOptions>,
}
///The client capabilities of a {@link DocumentLinkRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentLinkClientCapabilities {
///Whether document link supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**Whether the client supports the `tooltip` property on `DocumentLink`.
@since 3.15.0*/
#[serde(rename = "tooltipSupport")]
#[serde(default)]
pub tooltip_support: Option<bool>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentColorClientCapabilities {
/**Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `DocumentColorRegistrationOptions` return value
for the corresponding server capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
///Client capabilities of a {@link DocumentFormattingRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentFormattingClientCapabilities {
///Whether formatting supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
///Client capabilities of a {@link DocumentRangeFormattingRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentRangeFormattingClientCapabilities {
///Whether range formatting supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**Whether the client supports formatting multiple ranges at once.
@since 3.18.0*/
#[serde(rename = "rangesSupport")]
#[serde(default)]
pub ranges_support: Option<bool>,
}
///Client capabilities of a {@link DocumentOnTypeFormattingRequest}.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DocumentOnTypeFormattingClientCapabilities {
///Whether on type formatting supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RenameClientCapabilities {
///Whether rename supports dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**Client supports testing for validity of rename operations
before execution.
@since 3.12.0*/
#[serde(rename = "prepareSupport")]
#[serde(default)]
pub prepare_support: Option<bool>,
/**Client supports the default behavior result.
The value indicates the default behavior used by the
client.
@since 3.16.0*/
#[serde(rename = "prepareSupportDefaultBehavior")]
#[serde(default)]
pub prepare_support_default_behavior: Option<PrepareSupportDefaultBehavior>,
/**Whether the client honors the change annotations in
text edits and resource operations returned via the
rename request's workspace edit by for example presenting
the workspace edit in the user interface and asking
for confirmation.
@since 3.16.0*/
#[serde(rename = "honorsChangeAnnotations")]
#[serde(default)]
pub honors_change_annotations: Option<bool>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FoldingRangeClientCapabilities {
/**Whether implementation supports dynamic registration for folding range
providers. If this is set to `true` the client supports the new
`FoldingRangeRegistrationOptions` return value for the corresponding
server capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**The maximum number of folding ranges that the client prefers to receive
per document. The value serves as a hint, servers are free to follow the
limit.*/
#[serde(rename = "rangeLimit")]
#[serde(default)]
pub range_limit: Option<Uinteger>,
/**If set, the client signals that it only supports folding complete lines.
If set, client will ignore specified `startCharacter` and `endCharacter`
properties in a FoldingRange.*/
#[serde(rename = "lineFoldingOnly")]
#[serde(default)]
pub line_folding_only: Option<bool>,
/**Specific options for the folding range kind.
@since 3.17.0*/
#[serde(rename = "foldingRangeKind")]
#[serde(default)]
pub folding_range_kind: Option<ClientFoldingRangeKindOptions>,
/**Specific options for the folding range.
@since 3.17.0*/
#[serde(rename = "foldingRange")]
#[serde(default)]
pub folding_range: Option<ClientFoldingRangeOptions>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SelectionRangeClientCapabilities {
/**Whether implementation supports dynamic registration for selection range providers. If this is set to `true`
the client supports the new `SelectionRangeRegistrationOptions` return value for the corresponding server
capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
///The publish diagnostic client capabilities.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PublishDiagnosticsClientCapabilities {
#[serde(flatten)]
pub diagnostics_capabilities_base: DiagnosticsCapabilities,
/**Whether the client interprets the version property of the
`textDocument/publishDiagnostics` notification's parameter.
@since 3.15.0*/
#[serde(rename = "versionSupport")]
#[serde(default)]
pub version_support: Option<bool>,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CallHierarchyClientCapabilities {
/**Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
return value for the corresponding server capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
///@since 3.16.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SemanticTokensClientCapabilities {
/**Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
return value for the corresponding server capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**Which requests the client supports and might send to the server
depending on the server's capability. Please note that clients might not
show semantic tokens or degrade some of the user experience if a range
or full request is advertised by the client but not provided by the
server. If for example the client capability `requests.full` and
`request.range` are both set to true but the server only provides a
range provider the client might not render a minimap correctly or might
even decide to not show any semantic tokens at all.*/
pub requests: ClientSemanticTokensRequestOptions,
///The token types that the client supports.
#[serde(rename = "tokenTypes")]
pub token_types: Vec<String>,
///The token modifiers that the client supports.
#[serde(rename = "tokenModifiers")]
pub token_modifiers: Vec<String>,
///The token formats the clients supports.
pub formats: Vec<TokenFormat>,
///Whether the client supports tokens that can overlap each other.
#[serde(rename = "overlappingTokenSupport")]
#[serde(default)]
pub overlapping_token_support: Option<bool>,
///Whether the client supports tokens that can span multiple lines.
#[serde(rename = "multilineTokenSupport")]
#[serde(default)]
pub multiline_token_support: Option<bool>,
/**Whether the client allows the server to actively cancel a
semantic token request, e.g. supports returning
LSPErrorCodes.ServerCancelled. If a server does the client
needs to retrigger the request.
@since 3.17.0*/
#[serde(rename = "serverCancelSupport")]
#[serde(default)]
pub server_cancel_support: Option<bool>,
/**Whether the client uses semantic tokens to augment existing
syntax tokens. If set to `true` client side created syntax
tokens and semantic tokens are both used for colorization. If
set to `false` the client only uses the returned semantic tokens
for colorization.
If the value is `undefined` then the client behavior is not
specified.
@since 3.17.0*/
#[serde(rename = "augmentsSyntaxTokens")]
#[serde(default)]
pub augments_syntax_tokens: Option<bool>,
}
/**Client capabilities for the linked editing range request.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LinkedEditingRangeClientCapabilities {
/**Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
return value for the corresponding server capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
/**Client capabilities specific to the moniker request.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MonikerClientCapabilities {
/**Whether moniker supports dynamic registration. If this is set to `true`
the client supports the new `MonikerRegistrationOptions` return value
for the corresponding server capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
///@since 3.17.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TypeHierarchyClientCapabilities {
/**Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
return value for the corresponding server capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
/**Client capabilities specific to inline values.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineValueClientCapabilities {
///Whether implementation supports dynamic registration for inline value providers.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
/**Inlay hint client capabilities.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlayHintClientCapabilities {
///Whether inlay hints support dynamic registration.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
/**Indicates which properties a client can resolve lazily on an inlay
hint.*/
#[serde(rename = "resolveSupport")]
#[serde(default)]
pub resolve_support: Option<ClientInlayHintResolveOptions>,
}
/**Client capabilities specific to diagnostic pull requests.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DiagnosticClientCapabilities {
#[serde(flatten)]
pub diagnostics_capabilities_base: DiagnosticsCapabilities,
/**Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
return value for the corresponding server capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
///Whether the clients supports related documents for document diagnostic pulls.
#[serde(rename = "relatedDocumentSupport")]
#[serde(default)]
pub related_document_support: Option<bool>,
/**Whether the client supports `MarkupContent` in diagnostic messages.
@since 3.18.0*/
#[serde(rename = "markupMessageSupport")]
#[serde(default)]
pub markup_message_support: Option<bool>,
}
/**Client capabilities specific to inline completions.
@since 3.18.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InlineCompletionClientCapabilities {
///Whether implementation supports dynamic registration for inline completion providers.
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
}
/**Notebook specific client capabilities.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotebookDocumentSyncClientCapabilities {
/**Whether implementation supports dynamic registration. If this is
set to `true` the client supports the new
`(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
return value for the corresponding server capability as well.*/
#[serde(rename = "dynamicRegistration")]
#[serde(default)]
pub dynamic_registration: Option<bool>,
///The client supports sending execution summary data per cell.
#[serde(rename = "executionSummarySupport")]
#[serde(default)]
pub execution_summary_support: Option<bool>,
}
///Show message request client capabilities
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ShowMessageRequestClientCapabilities {
///Capabilities specific to the `MessageActionItem` type.
#[serde(rename = "messageActionItem")]
#[serde(default)]
pub message_action_item: Option<ClientShowMessageActionItemOptions>,
}
/**Client capabilities for the showDocument request.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ShowDocumentClientCapabilities {
/**The client has support for the showDocument
request.*/
pub support: bool,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct StaleRequestSupportOptions {
///The client will actively cancel the request.
pub cancel: bool,
/**The list of requests for which the client
will retry the request if it receives a
response with error code `ContentModified`*/
#[serde(rename = "retryOnContentModified")]
pub retry_on_content_modified: Vec<String>,
}
/**Client capabilities specific to regular expressions.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RegularExpressionsClientCapabilities {
///The engine's name.
pub engine: RegularExpressionEngineKind,
///The engine's version.
#[serde(default)]
pub version: Option<String>,
}
/**Client capabilities specific to the used markdown parser.
@since 3.16.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MarkdownClientCapabilities {
///The name of the parser.
pub parser: String,
///The version of the parser.
#[serde(default)]
pub version: Option<String>,
/**A list of HTML tags that the client allows / supports in
Markdown.
@since 3.17.0*/
#[serde(rename = "allowedTags")]
#[serde(default)]
pub allowed_tags: Option<Vec<String>>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ChangeAnnotationsSupportOptions {
/**Whether the client groups edits with equal labels into tree nodes,
for instance all edits labelled with "Changes in Strings" would
be a tree node.*/
#[serde(rename = "groupsOnLabel")]
#[serde(default)]
pub groups_on_label: Option<bool>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientSymbolKindOptions {
/**The symbol kind values the client supports. When this
property exists the client also guarantees that it will
handle values outside its set gracefully and falls back
to a default value when unknown.
If this property is not present the client only supports
the symbol kinds from `File` to `Array` as defined in
the initial version of the protocol.*/
#[serde(rename = "valueSet")]
#[serde(default)]
pub value_set: Option<Vec<SymbolKind>>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientSymbolTagOptions {
///The tags supported by the client.
#[serde(rename = "valueSet")]
pub value_set: Vec<SymbolTag>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientSymbolResolveOptions {
/**The properties that a client can resolve lazily. Usually
`location.range`*/
pub properties: Vec<String>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientCompletionItemOptions {
/**Client supports snippets as insert text.
A snippet can define tab stops and placeholders with `$1`, `$2`
and `${3:foo}`. `$0` defines the final tab stop, it defaults to
the end of the snippet. Placeholders with equal identifiers are linked,
that is typing in one will update others too.*/
#[serde(rename = "snippetSupport")]
#[serde(default)]
pub snippet_support: Option<bool>,
///Client supports commit characters on a completion item.
#[serde(rename = "commitCharactersSupport")]
#[serde(default)]
pub commit_characters_support: Option<bool>,
/**Client supports the following content formats for the documentation
property. The order describes the preferred format of the client.*/
#[serde(rename = "documentationFormat")]
#[serde(default)]
pub documentation_format: Option<Vec<MarkupKind>>,
///Client supports the deprecated property on a completion item.
#[serde(rename = "deprecatedSupport")]
#[serde(default)]
pub deprecated_support: Option<bool>,
///Client supports the preselect property on a completion item.
#[serde(rename = "preselectSupport")]
#[serde(default)]
pub preselect_support: Option<bool>,
/**Client supports the tag property on a completion item. Clients supporting
tags have to handle unknown tags gracefully. Clients especially need to
preserve unknown tags when sending a completion item back to the server in
a resolve call.
@since 3.15.0*/
#[serde(rename = "tagSupport")]
#[serde(default)]
pub tag_support: Option<CompletionItemTagOptions>,
/**Client support insert replace edit to control different behavior if a
completion item is inserted in the text or should replace text.
@since 3.16.0*/
#[serde(rename = "insertReplaceSupport")]
#[serde(default)]
pub insert_replace_support: Option<bool>,
/**Indicates which properties a client can resolve lazily on a completion
item. Before version 3.16.0 only the predefined properties `documentation`
and `details` could be resolved lazily.
@since 3.16.0*/
#[serde(rename = "resolveSupport")]
#[serde(default)]
pub resolve_support: Option<ClientCompletionItemResolveOptions>,
/**The client supports the `insertTextMode` property on
a completion item to override the whitespace handling mode
as defined by the client (see `insertTextMode`).
@since 3.16.0*/
#[serde(rename = "insertTextModeSupport")]
#[serde(default)]
pub insert_text_mode_support: Option<ClientCompletionItemInsertTextModeOptions>,
/**The client has support for completion item label
details (see also `CompletionItemLabelDetails`).
@since 3.17.0*/
#[serde(rename = "labelDetailsSupport")]
#[serde(default)]
pub label_details_support: Option<bool>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientCompletionItemOptionsKind {
/**The completion item kind values the client supports. When this
property exists the client also guarantees that it will
handle values outside its set gracefully and falls back
to a default value when unknown.
If this property is not present the client only supports
the completion items kinds from `Text` to `Reference` as defined in
the initial version of the protocol.*/
#[serde(rename = "valueSet")]
#[serde(default)]
pub value_set: Option<Vec<CompletionItemKind>>,
}
/**The client supports the following `CompletionList` specific
capabilities.
@since 3.17.0*/
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionListCapabilities {
/**The client supports the following itemDefaults on
a completion list.
The value lists the supported property names of the
`CompletionList.itemDefaults` object. If omitted
no properties are supported.
@since 3.17.0*/
#[serde(rename = "itemDefaults")]
#[serde(default)]
pub item_defaults: Option<Vec<String>>,
/**Specifies whether the client supports `CompletionList.applyKind` to
indicate how supported values from `completionList.itemDefaults`
and `completion` will be combined.
If a client supports `applyKind` it must support it for all fields
that it supports that are listed in `CompletionList.applyKind`. This
means when clients add support for new/future fields in completion
items the MUST also support merge for them if those fields are
defined in `CompletionList.applyKind`.
@since 3.18.0*/
#[serde(rename = "applyKindSupport")]
#[serde(default)]
pub apply_kind_support: Option<bool>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientSignatureInformationOptions {
/**Client supports the following content formats for the documentation
property. The order describes the preferred format of the client.*/
#[serde(rename = "documentationFormat")]
#[serde(default)]
pub documentation_format: Option<Vec<MarkupKind>>,
///Client capabilities specific to parameter information.
#[serde(rename = "parameterInformation")]
#[serde(default)]
pub parameter_information: Option<ClientSignatureParameterInformationOptions>,
/**The client supports the `activeParameter` property on `SignatureInformation`
literal.
@since 3.16.0*/
#[serde(rename = "activeParameterSupport")]
#[serde(default)]
pub active_parameter_support: Option<bool>,
/**The client supports the `activeParameter` property on
`SignatureHelp`/`SignatureInformation` being set to `null` to
indicate that no parameter should be active.
@since 3.18.0*/
#[serde(rename = "noActiveParameterSupport")]
#[serde(default)]
pub no_active_parameter_support: Option<bool>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientCodeActionLiteralOptions {
/**The code action kind is support with the following value
set.*/
#[serde(rename = "codeActionKind")]
pub code_action_kind: ClientCodeActionKindOptions,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientCodeActionResolveOptions {
///The properties that a client can resolve lazily.
pub properties: Vec<String>,
}
///@since 3.18.0 - proposed
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CodeActionTagOptions {
///The tags supported by the client.
#[serde(rename = "valueSet")]
pub value_set: Vec<CodeActionTag>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientCodeLensResolveOptions {
///The properties that a client can resolve lazily.
pub properties: Vec<String>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientFoldingRangeKindOptions {
/**The folding range kind values the client supports. When this
property exists the client also guarantees that it will
handle values outside its set gracefully and falls back
to a default value when unknown.*/
#[serde(rename = "valueSet")]
#[serde(default)]
pub value_set: Option<Vec<FoldingRangeKind>>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientFoldingRangeOptions {
/**If set, the client signals that it supports setting collapsedText on
folding ranges to display custom labels instead of the default text.
@since 3.17.0*/
#[serde(rename = "collapsedText")]
#[serde(default)]
pub collapsed_text: Option<bool>,
}
///General diagnostics capabilities for pull and push model.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DiagnosticsCapabilities {
///Whether the clients accepts diagnostics with related information.
#[serde(rename = "relatedInformation")]
#[serde(default)]
pub related_information: Option<bool>,
/**Client supports the tag property to provide meta data about a diagnostic.
Clients supporting tags have to handle unknown tags gracefully.
@since 3.15.0*/
#[serde(rename = "tagSupport")]
#[serde(default)]
pub tag_support: Option<ClientDiagnosticsTagOptions>,
/**Client supports a codeDescription property
@since 3.16.0*/
#[serde(rename = "codeDescriptionSupport")]
#[serde(default)]
pub code_description_support: Option<bool>,
/**Whether code action supports the `data` property which is
preserved between a `textDocument/publishDiagnostics` and
`textDocument/codeAction` request.
@since 3.16.0*/
#[serde(rename = "dataSupport")]
#[serde(default)]
pub data_support: Option<bool>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientSemanticTokensRequestOptions {
/**The client will send the `textDocument/semanticTokens/range` request if
the server provides a corresponding handler.*/
#[serde(default)]
pub range: Option<BooleanOrLiteral57f9bf6390bb37d9>,
/**The client will send the `textDocument/semanticTokens/full` request if
the server provides a corresponding handler.*/
#[serde(default)]
pub full: Option<BooleanOrClientSemanticTokensRequestFullDelta>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientInlayHintResolveOptions {
///The properties that a client can resolve lazily.
pub properties: Vec<String>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientShowMessageActionItemOptions {
/**Whether the client supports additional attributes which
are preserved and send back to the server in the
request's response.*/
#[serde(rename = "additionalPropertiesSupport")]
#[serde(default)]
pub additional_properties_support: Option<bool>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionItemTagOptions {
///The tags supported by the client.
#[serde(rename = "valueSet")]
pub value_set: Vec<CompletionItemTag>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientCompletionItemResolveOptions {
///The properties that a client can resolve lazily.
pub properties: Vec<String>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientCompletionItemInsertTextModeOptions {
#[serde(rename = "valueSet")]
pub value_set: Vec<InsertTextMode>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientSignatureParameterInformationOptions {
/**The client supports processing label offsets instead of a
simple label string.
@since 3.14.0*/
#[serde(rename = "labelOffsetSupport")]
#[serde(default)]
pub label_offset_support: Option<bool>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientCodeActionKindOptions {
/**The code action kind values the client supports. When this
property exists the client also guarantees that it will
handle values outside its set gracefully and falls back
to a default value when unknown.*/
#[serde(rename = "valueSet")]
pub value_set: Vec<CodeActionKind>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientDiagnosticsTagOptions {
///The tags supported by the client.
#[serde(rename = "valueSet")]
pub value_set: Vec<DiagnosticTag>,
}
///@since 3.18.0
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientSemanticTokensRequestFullDelta {
/**The client will send the `textDocument/semanticTokens/full/delta` request if
the server provides a corresponding handler.*/
#[serde(default)]
pub delta: Option<bool>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum AnnotatedTextEditOrSnippetTextEditOrTextEdit {
AnnotatedTextEdit(AnnotatedTextEdit),
SnippetTextEdit(SnippetTextEdit),
TextEdit(TextEdit),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrCallHierarchyOptionsOrCallHierarchyRegistrationOptions {
CallHierarchyRegistrationOptions(CallHierarchyRegistrationOptions),
CallHierarchyOptions(CallHierarchyOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrClientSemanticTokensRequestFullDelta {
ClientSemanticTokensRequestFullDelta(ClientSemanticTokensRequestFullDelta),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrCodeActionOptions {
CodeActionOptions(CodeActionOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrDecimalOrIntegerOrLSPArrayOrLSPObjectOrStringOrUinteger {
LSPArray(LSPArray),
LSPObject(LSPObject),
Boolean(bool),
Decimal(Decimal),
Integer(Integer),
String(String),
Uinteger(Uinteger),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrDeclarationOptionsOrDeclarationRegistrationOptions {
DeclarationRegistrationOptions(DeclarationRegistrationOptions),
DeclarationOptions(DeclarationOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrDefinitionOptions {
DefinitionOptions(DefinitionOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrDocumentColorOptionsOrDocumentColorRegistrationOptions {
DocumentColorRegistrationOptions(DocumentColorRegistrationOptions),
DocumentColorOptions(DocumentColorOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrDocumentFormattingOptions {
DocumentFormattingOptions(DocumentFormattingOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrDocumentHighlightOptions {
DocumentHighlightOptions(DocumentHighlightOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrDocumentRangeFormattingOptions {
DocumentRangeFormattingOptions(DocumentRangeFormattingOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrDocumentSymbolOptions {
DocumentSymbolOptions(DocumentSymbolOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrFoldingRangeOptionsOrFoldingRangeRegistrationOptions {
FoldingRangeRegistrationOptions(FoldingRangeRegistrationOptions),
FoldingRangeOptions(FoldingRangeOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrHoverOptions {
HoverOptions(HoverOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrImplementationOptionsOrImplementationRegistrationOptions {
ImplementationRegistrationOptions(ImplementationRegistrationOptions),
ImplementationOptions(ImplementationOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrInlayHintOptionsOrInlayHintRegistrationOptions {
InlayHintRegistrationOptions(InlayHintRegistrationOptions),
InlayHintOptions(InlayHintOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrInlineCompletionOptions {
InlineCompletionOptions(InlineCompletionOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrInlineValueOptionsOrInlineValueRegistrationOptions {
InlineValueRegistrationOptions(InlineValueRegistrationOptions),
InlineValueOptions(InlineValueOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrLinkedEditingRangeOptionsOrLinkedEditingRangeRegistrationOptions {
LinkedEditingRangeRegistrationOptions(LinkedEditingRangeRegistrationOptions),
LinkedEditingRangeOptions(LinkedEditingRangeOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrLiteral57f9bf6390bb37d9 {
Literal57f9bf6390bb37d9(Literal57f9bf6390bb37d9),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrMonikerOptionsOrMonikerRegistrationOptions {
MonikerRegistrationOptions(MonikerRegistrationOptions),
MonikerOptions(MonikerOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrReferenceOptions {
ReferenceOptions(ReferenceOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrRenameOptions {
RenameOptions(RenameOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrSaveOptions {
SaveOptions(SaveOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions {
SelectionRangeRegistrationOptions(SelectionRangeRegistrationOptions),
SelectionRangeOptions(SelectionRangeOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrSemanticTokensFullDelta {
SemanticTokensFullDelta(SemanticTokensFullDelta),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrString {
Boolean(bool),
String(String),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrTypeDefinitionOptionsOrTypeDefinitionRegistrationOptions {
TypeDefinitionRegistrationOptions(TypeDefinitionRegistrationOptions),
TypeDefinitionOptions(TypeDefinitionOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrTypeHierarchyOptionsOrTypeHierarchyRegistrationOptions {
TypeHierarchyRegistrationOptions(TypeHierarchyRegistrationOptions),
TypeHierarchyOptions(TypeHierarchyOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum BooleanOrWorkspaceSymbolOptions {
WorkspaceSymbolOptions(WorkspaceSymbolOptions),
Boolean(bool),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum CodeActionOrCommand {
CodeAction(CodeAction),
Command(Command),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum CompletionItemArrayOrCompletionList {
CompletionItemArray(Vec<CompletionItem>),
CompletionList(CompletionList),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum CreateFileOrDeleteFileOrRenameFileOrTextDocumentEdit {
RenameFile(RenameFile),
CreateFile(CreateFile),
DeleteFile(DeleteFile),
TextDocumentEdit(TextDocumentEdit),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum DeclarationOrDeclarationLinkArray {
Declaration(Declaration),
DeclarationLinkArray(Vec<DeclarationLink>),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum DefinitionOrDefinitionLinkArray {
Definition(Definition),
DefinitionLinkArray(Vec<DefinitionLink>),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum DiagnosticOptionsOrDiagnosticRegistrationOptions {
DiagnosticRegistrationOptions(DiagnosticRegistrationOptions),
DiagnosticOptions(DiagnosticOptions),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum DocumentSymbolArrayOrSymbolInformationArray {
DocumentSymbolArray(Vec<DocumentSymbol>),
SymbolInformationArray(Vec<SymbolInformation>),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum EditRangeWithInsertReplaceOrRange {
EditRangeWithInsertReplace(EditRangeWithInsertReplace),
Range(Range),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum FullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport {
FullDocumentDiagnosticReport(FullDocumentDiagnosticReport),
UnchangedDocumentDiagnosticReport(UnchangedDocumentDiagnosticReport),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum InlayHintLabelPartArrayOrString {
InlayHintLabelPartArray(Vec<InlayHintLabelPart>),
String(String),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum InlineCompletionItemArrayOrInlineCompletionList {
InlineCompletionItemArray(Vec<InlineCompletionItem>),
InlineCompletionList(InlineCompletionList),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum InlineValueEvaluatableExpressionOrInlineValueTextOrInlineValueVariableLookup {
InlineValueVariableLookup(InlineValueVariableLookup),
InlineValueEvaluatableExpression(InlineValueEvaluatableExpression),
InlineValueText(InlineValueText),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum InsertReplaceEditOrTextEdit {
InsertReplaceEdit(InsertReplaceEdit),
TextEdit(TextEdit),
}
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(untagged)]
pub enum IntegerOrString {
Integer(Integer),
String(String),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Literal57f9bf6390bb37d9 {}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum LocationOrLocationArray {
LocationArray(Vec<Location>),
Location(Location),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum LocationOrLocationUriOnly {
Location(Location),
LocationUriOnly(LocationUriOnly),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum MarkedStringOrMarkedStringArrayOrMarkupContent {
MarkedStringArray(Vec<MarkedString>),
MarkedString(MarkedString),
MarkupContent(MarkupContent),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum MarkedStringWithLanguageOrString {
MarkedStringWithLanguage(MarkedStringWithLanguage),
String(String),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum MarkupContentOrString {
MarkupContent(MarkupContent),
String(String),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum NotebookCellTextDocumentFilterOrTextDocumentFilter {
TextDocumentFilter(TextDocumentFilter),
NotebookCellTextDocumentFilter(NotebookCellTextDocumentFilter),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum NotebookDocumentFilterNotebookTypeOrNotebookDocumentFilterPatternOrNotebookDocumentFilterScheme {
NotebookDocumentFilterNotebookType(NotebookDocumentFilterNotebookType),
NotebookDocumentFilterPattern(NotebookDocumentFilterPattern),
NotebookDocumentFilterScheme(NotebookDocumentFilterScheme),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum NotebookDocumentFilterOrString {
NotebookDocumentFilter(NotebookDocumentFilter),
String(String),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum NotebookDocumentFilterWithCellsOrNotebookDocumentFilterWithNotebook {
NotebookDocumentFilterWithCells(NotebookDocumentFilterWithCells),
NotebookDocumentFilterWithNotebook(NotebookDocumentFilterWithNotebook),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum NotebookDocumentSyncOptionsOrNotebookDocumentSyncRegistrationOptions {
NotebookDocumentSyncRegistrationOptions(NotebookDocumentSyncRegistrationOptions),
NotebookDocumentSyncOptions(NotebookDocumentSyncOptions),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum PatternOrRelativePattern {
RelativePattern(RelativePattern),
Pattern(Pattern),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum PrepareRenameDefaultBehaviorOrPrepareRenamePlaceholderOrRange {
PrepareRenamePlaceholder(PrepareRenamePlaceholder),
Range(Range),
PrepareRenameDefaultBehavior(PrepareRenameDefaultBehavior),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum RelatedFullDocumentDiagnosticReportOrRelatedUnchangedDocumentDiagnosticReport {
RelatedFullDocumentDiagnosticReport(RelatedFullDocumentDiagnosticReport),
RelatedUnchangedDocumentDiagnosticReport(RelatedUnchangedDocumentDiagnosticReport),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum SemanticTokensOptionsOrSemanticTokensRegistrationOptions {
SemanticTokensRegistrationOptions(SemanticTokensRegistrationOptions),
SemanticTokensOptions(SemanticTokensOptions),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum SemanticTokensOrSemanticTokensDelta {
SemanticTokens(SemanticTokens),
SemanticTokensDelta(SemanticTokensDelta),
}
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(untagged)]
pub enum StringOrStringArray {
StringArray(Vec<String>),
String(String),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum StringOrStringValue {
StringValue(StringValue),
String(String),
}
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(untagged)]
pub enum StringOrTupleOfUintegerAndUinteger {
TupleOfUintegerAndUinteger((Uinteger, Uinteger)),
String(String),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum SymbolInformationArrayOrWorkspaceSymbolArray {
SymbolInformationArray(Vec<SymbolInformation>),
WorkspaceSymbolArray(Vec<WorkspaceSymbol>),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum TextDocumentContentChangePartialOrTextDocumentContentChangeWholeDocument {
TextDocumentContentChangePartial(TextDocumentContentChangePartial),
TextDocumentContentChangeWholeDocument(TextDocumentContentChangeWholeDocument),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum TextDocumentContentOptionsOrTextDocumentContentRegistrationOptions {
TextDocumentContentRegistrationOptions(TextDocumentContentRegistrationOptions),
TextDocumentContentOptions(TextDocumentContentOptions),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum TextDocumentFilterLanguageOrTextDocumentFilterPatternOrTextDocumentFilterScheme {
TextDocumentFilterLanguage(TextDocumentFilterLanguage),
TextDocumentFilterPattern(TextDocumentFilterPattern),
TextDocumentFilterScheme(TextDocumentFilterScheme),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum TextDocumentSyncKindOrTextDocumentSyncOptions {
TextDocumentSyncOptions(TextDocumentSyncOptions),
TextDocumentSyncKind(TextDocumentSyncKind),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum UriOrWorkspaceFolder {
WorkspaceFolder(WorkspaceFolder),
Uri(URI),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum WorkspaceFullDocumentDiagnosticReportOrWorkspaceUnchangedDocumentDiagnosticReport {
WorkspaceFullDocumentDiagnosticReport(WorkspaceFullDocumentDiagnosticReport),
WorkspaceUnchangedDocumentDiagnosticReport(
WorkspaceUnchangedDocumentDiagnosticReport,
),
}
pub trait LspRequest {
type Params: Serialize + for<'de> Deserialize<'de>;
type Result: Serialize + for<'de> Deserialize<'de>;
const METHOD: &'static str;
}
pub struct ImplementationRequest;
impl LspRequest for ImplementationRequest {
type Params = ImplementationParams;
type Result = Option<DefinitionOrDefinitionLinkArray>;
const METHOD: &'static str = "textDocument/implementation";
}
pub struct TypeDefinitionRequest;
impl LspRequest for TypeDefinitionRequest {
type Params = TypeDefinitionParams;
type Result = Option<DefinitionOrDefinitionLinkArray>;
const METHOD: &'static str = "textDocument/typeDefinition";
}
pub struct WorkspaceFoldersRequest;
impl LspRequest for WorkspaceFoldersRequest {
type Params = ();
type Result = Option<Vec<WorkspaceFolder>>;
const METHOD: &'static str = "workspace/workspaceFolders";
}
pub struct ConfigurationRequest;
impl LspRequest for ConfigurationRequest {
type Params = ConfigurationParams;
type Result = Vec<LSPAny>;
const METHOD: &'static str = "workspace/configuration";
}
pub struct DocumentColorRequest;
impl LspRequest for DocumentColorRequest {
type Params = DocumentColorParams;
type Result = Vec<ColorInformation>;
const METHOD: &'static str = "textDocument/documentColor";
}
pub struct ColorPresentationRequest;
impl LspRequest for ColorPresentationRequest {
type Params = ColorPresentationParams;
type Result = Vec<ColorPresentation>;
const METHOD: &'static str = "textDocument/colorPresentation";
}
pub struct FoldingRangeRequest;
impl LspRequest for FoldingRangeRequest {
type Params = FoldingRangeParams;
type Result = Option<Vec<FoldingRange>>;
const METHOD: &'static str = "textDocument/foldingRange";
}
pub struct FoldingRangeRefreshRequest;
impl LspRequest for FoldingRangeRefreshRequest {
type Params = ();
type Result = ();
const METHOD: &'static str = "workspace/foldingRange/refresh";
}
pub struct DeclarationRequest;
impl LspRequest for DeclarationRequest {
type Params = DeclarationParams;
type Result = Option<DeclarationOrDeclarationLinkArray>;
const METHOD: &'static str = "textDocument/declaration";
}
pub struct SelectionRangeRequest;
impl LspRequest for SelectionRangeRequest {
type Params = SelectionRangeParams;
type Result = Option<Vec<SelectionRange>>;
const METHOD: &'static str = "textDocument/selectionRange";
}
pub struct WorkDoneProgressCreateRequest;
impl LspRequest for WorkDoneProgressCreateRequest {
type Params = WorkDoneProgressCreateParams;
type Result = ();
const METHOD: &'static str = "window/workDoneProgress/create";
}
pub struct CallHierarchyPrepareRequest;
impl LspRequest for CallHierarchyPrepareRequest {
type Params = CallHierarchyPrepareParams;
type Result = Option<Vec<CallHierarchyItem>>;
const METHOD: &'static str = "textDocument/prepareCallHierarchy";
}
pub struct CallHierarchyIncomingCallsRequest;
impl LspRequest for CallHierarchyIncomingCallsRequest {
type Params = CallHierarchyIncomingCallsParams;
type Result = Option<Vec<CallHierarchyIncomingCall>>;
const METHOD: &'static str = "callHierarchy/incomingCalls";
}
pub struct CallHierarchyOutgoingCallsRequest;
impl LspRequest for CallHierarchyOutgoingCallsRequest {
type Params = CallHierarchyOutgoingCallsParams;
type Result = Option<Vec<CallHierarchyOutgoingCall>>;
const METHOD: &'static str = "callHierarchy/outgoingCalls";
}
pub struct SemanticTokensRequest;
impl LspRequest for SemanticTokensRequest {
type Params = SemanticTokensParams;
type Result = Option<SemanticTokens>;
const METHOD: &'static str = "textDocument/semanticTokens/full";
}
pub struct SemanticTokensDeltaRequest;
impl LspRequest for SemanticTokensDeltaRequest {
type Params = SemanticTokensDeltaParams;
type Result = Option<SemanticTokensOrSemanticTokensDelta>;
const METHOD: &'static str = "textDocument/semanticTokens/full/delta";
}
pub struct SemanticTokensRangeRequest;
impl LspRequest for SemanticTokensRangeRequest {
type Params = SemanticTokensRangeParams;
type Result = Option<SemanticTokens>;
const METHOD: &'static str = "textDocument/semanticTokens/range";
}
pub struct SemanticTokensRefreshRequest;
impl LspRequest for SemanticTokensRefreshRequest {
type Params = ();
type Result = ();
const METHOD: &'static str = "workspace/semanticTokens/refresh";
}
pub struct ShowDocumentRequest;
impl LspRequest for ShowDocumentRequest {
type Params = ShowDocumentParams;
type Result = ShowDocumentResult;
const METHOD: &'static str = "window/showDocument";
}
pub struct LinkedEditingRangeRequest;
impl LspRequest for LinkedEditingRangeRequest {
type Params = LinkedEditingRangeParams;
type Result = Option<LinkedEditingRanges>;
const METHOD: &'static str = "textDocument/linkedEditingRange";
}
pub struct WillCreateFilesRequest;
impl LspRequest for WillCreateFilesRequest {
type Params = CreateFilesParams;
type Result = Option<WorkspaceEdit>;
const METHOD: &'static str = "workspace/willCreateFiles";
}
pub struct WillRenameFilesRequest;
impl LspRequest for WillRenameFilesRequest {
type Params = RenameFilesParams;
type Result = Option<WorkspaceEdit>;
const METHOD: &'static str = "workspace/willRenameFiles";
}
pub struct WillDeleteFilesRequest;
impl LspRequest for WillDeleteFilesRequest {
type Params = DeleteFilesParams;
type Result = Option<WorkspaceEdit>;
const METHOD: &'static str = "workspace/willDeleteFiles";
}
pub struct MonikerRequest;
impl LspRequest for MonikerRequest {
type Params = MonikerParams;
type Result = Option<Vec<Moniker>>;
const METHOD: &'static str = "textDocument/moniker";
}
pub struct TypeHierarchyPrepareRequest;
impl LspRequest for TypeHierarchyPrepareRequest {
type Params = TypeHierarchyPrepareParams;
type Result = Option<Vec<TypeHierarchyItem>>;
const METHOD: &'static str = "textDocument/prepareTypeHierarchy";
}
pub struct TypeHierarchySupertypesRequest;
impl LspRequest for TypeHierarchySupertypesRequest {
type Params = TypeHierarchySupertypesParams;
type Result = Option<Vec<TypeHierarchyItem>>;
const METHOD: &'static str = "typeHierarchy/supertypes";
}
pub struct TypeHierarchySubtypesRequest;
impl LspRequest for TypeHierarchySubtypesRequest {
type Params = TypeHierarchySubtypesParams;
type Result = Option<Vec<TypeHierarchyItem>>;
const METHOD: &'static str = "typeHierarchy/subtypes";
}
pub struct InlineValueRequest;
impl LspRequest for InlineValueRequest {
type Params = InlineValueParams;
type Result = Option<Vec<InlineValue>>;
const METHOD: &'static str = "textDocument/inlineValue";
}
pub struct InlineValueRefreshRequest;
impl LspRequest for InlineValueRefreshRequest {
type Params = ();
type Result = ();
const METHOD: &'static str = "workspace/inlineValue/refresh";
}
pub struct InlayHintRequest;
impl LspRequest for InlayHintRequest {
type Params = InlayHintParams;
type Result = Option<Vec<InlayHint>>;
const METHOD: &'static str = "textDocument/inlayHint";
}
pub struct InlayHintResolveRequest;
impl LspRequest for InlayHintResolveRequest {
type Params = InlayHint;
type Result = InlayHint;
const METHOD: &'static str = "inlayHint/resolve";
}
pub struct InlayHintRefreshRequest;
impl LspRequest for InlayHintRefreshRequest {
type Params = ();
type Result = ();
const METHOD: &'static str = "workspace/inlayHint/refresh";
}
pub struct DocumentDiagnosticRequest;
impl LspRequest for DocumentDiagnosticRequest {
type Params = DocumentDiagnosticParams;
type Result = DocumentDiagnosticReport;
const METHOD: &'static str = "textDocument/diagnostic";
}
pub struct WorkspaceDiagnosticRequest;
impl LspRequest for WorkspaceDiagnosticRequest {
type Params = WorkspaceDiagnosticParams;
type Result = WorkspaceDiagnosticReport;
const METHOD: &'static str = "workspace/diagnostic";
}
pub struct DiagnosticRefreshRequest;
impl LspRequest for DiagnosticRefreshRequest {
type Params = ();
type Result = ();
const METHOD: &'static str = "workspace/diagnostic/refresh";
}
pub struct InlineCompletionRequest;
impl LspRequest for InlineCompletionRequest {
type Params = InlineCompletionParams;
type Result = Option<InlineCompletionItemArrayOrInlineCompletionList>;
const METHOD: &'static str = "textDocument/inlineCompletion";
}
pub struct TextDocumentContentRequest;
impl LspRequest for TextDocumentContentRequest {
type Params = TextDocumentContentParams;
type Result = TextDocumentContentResult;
const METHOD: &'static str = "workspace/textDocumentContent";
}
pub struct TextDocumentContentRefreshRequest;
impl LspRequest for TextDocumentContentRefreshRequest {
type Params = TextDocumentContentRefreshParams;
type Result = ();
const METHOD: &'static str = "workspace/textDocumentContent/refresh";
}
pub struct RegistrationRequest;
impl LspRequest for RegistrationRequest {
type Params = RegistrationParams;
type Result = ();
const METHOD: &'static str = "client/registerCapability";
}
pub struct UnregistrationRequest;
impl LspRequest for UnregistrationRequest {
type Params = UnregistrationParams;
type Result = ();
const METHOD: &'static str = "client/unregisterCapability";
}
pub struct InitializeRequest;
impl LspRequest for InitializeRequest {
type Params = InitializeParams;
type Result = InitializeResult;
const METHOD: &'static str = "initialize";
}
pub struct ShutdownRequest;
impl LspRequest for ShutdownRequest {
type Params = ();
type Result = ();
const METHOD: &'static str = "shutdown";
}
pub struct ShowMessageRequest;
impl LspRequest for ShowMessageRequest {
type Params = ShowMessageRequestParams;
type Result = Option<MessageActionItem>;
const METHOD: &'static str = "window/showMessageRequest";
}
pub struct WillSaveTextDocumentWaitUntilRequest;
impl LspRequest for WillSaveTextDocumentWaitUntilRequest {
type Params = WillSaveTextDocumentParams;
type Result = Option<Vec<TextEdit>>;
const METHOD: &'static str = "textDocument/willSaveWaitUntil";
}
pub struct CompletionRequest;
impl LspRequest for CompletionRequest {
type Params = CompletionParams;
type Result = Option<CompletionItemArrayOrCompletionList>;
const METHOD: &'static str = "textDocument/completion";
}
pub struct CompletionResolveRequest;
impl LspRequest for CompletionResolveRequest {
type Params = CompletionItem;
type Result = CompletionItem;
const METHOD: &'static str = "completionItem/resolve";
}
pub struct HoverRequest;
impl LspRequest for HoverRequest {
type Params = HoverParams;
type Result = Option<Hover>;
const METHOD: &'static str = "textDocument/hover";
}
pub struct SignatureHelpRequest;
impl LspRequest for SignatureHelpRequest {
type Params = SignatureHelpParams;
type Result = Option<SignatureHelp>;
const METHOD: &'static str = "textDocument/signatureHelp";
}
pub struct DefinitionRequest;
impl LspRequest for DefinitionRequest {
type Params = DefinitionParams;
type Result = Option<DefinitionOrDefinitionLinkArray>;
const METHOD: &'static str = "textDocument/definition";
}
pub struct ReferencesRequest;
impl LspRequest for ReferencesRequest {
type Params = ReferenceParams;
type Result = Option<Vec<Location>>;
const METHOD: &'static str = "textDocument/references";
}
pub struct DocumentHighlightRequest;
impl LspRequest for DocumentHighlightRequest {
type Params = DocumentHighlightParams;
type Result = Option<Vec<DocumentHighlight>>;
const METHOD: &'static str = "textDocument/documentHighlight";
}
pub struct DocumentSymbolRequest;
impl LspRequest for DocumentSymbolRequest {
type Params = DocumentSymbolParams;
type Result = Option<DocumentSymbolArrayOrSymbolInformationArray>;
const METHOD: &'static str = "textDocument/documentSymbol";
}
pub struct CodeActionRequest;
impl LspRequest for CodeActionRequest {
type Params = CodeActionParams;
type Result = Option<Vec<CodeActionOrCommand>>;
const METHOD: &'static str = "textDocument/codeAction";
}
pub struct CodeActionResolveRequest;
impl LspRequest for CodeActionResolveRequest {
type Params = CodeAction;
type Result = CodeAction;
const METHOD: &'static str = "codeAction/resolve";
}
pub struct WorkspaceSymbolRequest;
impl LspRequest for WorkspaceSymbolRequest {
type Params = WorkspaceSymbolParams;
type Result = Option<SymbolInformationArrayOrWorkspaceSymbolArray>;
const METHOD: &'static str = "workspace/symbol";
}
pub struct WorkspaceSymbolResolveRequest;
impl LspRequest for WorkspaceSymbolResolveRequest {
type Params = WorkspaceSymbol;
type Result = WorkspaceSymbol;
const METHOD: &'static str = "workspaceSymbol/resolve";
}
pub struct CodeLensRequest;
impl LspRequest for CodeLensRequest {
type Params = CodeLensParams;
type Result = Option<Vec<CodeLens>>;
const METHOD: &'static str = "textDocument/codeLens";
}
pub struct CodeLensResolveRequest;
impl LspRequest for CodeLensResolveRequest {
type Params = CodeLens;
type Result = CodeLens;
const METHOD: &'static str = "codeLens/resolve";
}
pub struct CodeLensRefreshRequest;
impl LspRequest for CodeLensRefreshRequest {
type Params = ();
type Result = ();
const METHOD: &'static str = "workspace/codeLens/refresh";
}
pub struct DocumentLinkRequest;
impl LspRequest for DocumentLinkRequest {
type Params = DocumentLinkParams;
type Result = Option<Vec<DocumentLink>>;
const METHOD: &'static str = "textDocument/documentLink";
}
pub struct DocumentLinkResolveRequest;
impl LspRequest for DocumentLinkResolveRequest {
type Params = DocumentLink;
type Result = DocumentLink;
const METHOD: &'static str = "documentLink/resolve";
}
pub struct DocumentFormattingRequest;
impl LspRequest for DocumentFormattingRequest {
type Params = DocumentFormattingParams;
type Result = Option<Vec<TextEdit>>;
const METHOD: &'static str = "textDocument/formatting";
}
pub struct DocumentRangeFormattingRequest;
impl LspRequest for DocumentRangeFormattingRequest {
type Params = DocumentRangeFormattingParams;
type Result = Option<Vec<TextEdit>>;
const METHOD: &'static str = "textDocument/rangeFormatting";
}
pub struct DocumentRangesFormattingRequest;
impl LspRequest for DocumentRangesFormattingRequest {
type Params = DocumentRangesFormattingParams;
type Result = Option<Vec<TextEdit>>;
const METHOD: &'static str = "textDocument/rangesFormatting";
}
pub struct DocumentOnTypeFormattingRequest;
impl LspRequest for DocumentOnTypeFormattingRequest {
type Params = DocumentOnTypeFormattingParams;
type Result = Option<Vec<TextEdit>>;
const METHOD: &'static str = "textDocument/onTypeFormatting";
}
pub struct RenameRequest;
impl LspRequest for RenameRequest {
type Params = RenameParams;
type Result = Option<WorkspaceEdit>;
const METHOD: &'static str = "textDocument/rename";
}
pub struct PrepareRenameRequest;
impl LspRequest for PrepareRenameRequest {
type Params = PrepareRenameParams;
type Result = Option<PrepareRenameResult>;
const METHOD: &'static str = "textDocument/prepareRename";
}
pub struct ExecuteCommandRequest;
impl LspRequest for ExecuteCommandRequest {
type Params = ExecuteCommandParams;
type Result = Option<LSPAny>;
const METHOD: &'static str = "workspace/executeCommand";
}
pub struct ApplyWorkspaceEditRequest;
impl LspRequest for ApplyWorkspaceEditRequest {
type Params = ApplyWorkspaceEditParams;
type Result = ApplyWorkspaceEditResult;
const METHOD: &'static str = "workspace/applyEdit";
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum KnownRequest {
ImplementationRequest,
TypeDefinitionRequest,
WorkspaceFoldersRequest,
ConfigurationRequest,
DocumentColorRequest,
ColorPresentationRequest,
FoldingRangeRequest,
FoldingRangeRefreshRequest,
DeclarationRequest,
SelectionRangeRequest,
WorkDoneProgressCreateRequest,
CallHierarchyPrepareRequest,
CallHierarchyIncomingCallsRequest,
CallHierarchyOutgoingCallsRequest,
SemanticTokensRequest,
SemanticTokensDeltaRequest,
SemanticTokensRangeRequest,
SemanticTokensRefreshRequest,
ShowDocumentRequest,
LinkedEditingRangeRequest,
WillCreateFilesRequest,
WillRenameFilesRequest,
WillDeleteFilesRequest,
MonikerRequest,
TypeHierarchyPrepareRequest,
TypeHierarchySupertypesRequest,
TypeHierarchySubtypesRequest,
InlineValueRequest,
InlineValueRefreshRequest,
InlayHintRequest,
InlayHintResolveRequest,
InlayHintRefreshRequest,
DocumentDiagnosticRequest,
WorkspaceDiagnosticRequest,
DiagnosticRefreshRequest,
InlineCompletionRequest,
TextDocumentContentRequest,
TextDocumentContentRefreshRequest,
RegistrationRequest,
UnregistrationRequest,
InitializeRequest,
ShutdownRequest,
ShowMessageRequest,
WillSaveTextDocumentWaitUntilRequest,
CompletionRequest,
CompletionResolveRequest,
HoverRequest,
SignatureHelpRequest,
DefinitionRequest,
ReferencesRequest,
DocumentHighlightRequest,
DocumentSymbolRequest,
CodeActionRequest,
CodeActionResolveRequest,
WorkspaceSymbolRequest,
WorkspaceSymbolResolveRequest,
CodeLensRequest,
CodeLensResolveRequest,
CodeLensRefreshRequest,
DocumentLinkRequest,
DocumentLinkResolveRequest,
DocumentFormattingRequest,
DocumentRangeFormattingRequest,
DocumentRangesFormattingRequest,
DocumentOnTypeFormattingRequest,
RenameRequest,
PrepareRenameRequest,
ExecuteCommandRequest,
ApplyWorkspaceEditRequest,
}
pub trait LspNotification {
type Params: Serialize + for<'de> Deserialize<'de>;
const METHOD: &'static str;
}
pub struct DidChangeWorkspaceFoldersNotification;
impl LspNotification for DidChangeWorkspaceFoldersNotification {
type Params = DidChangeWorkspaceFoldersParams;
const METHOD: &'static str = "workspace/didChangeWorkspaceFolders";
}
pub struct WorkDoneProgressCancelNotification;
impl LspNotification for WorkDoneProgressCancelNotification {
type Params = WorkDoneProgressCancelParams;
const METHOD: &'static str = "window/workDoneProgress/cancel";
}
pub struct DidCreateFilesNotification;
impl LspNotification for DidCreateFilesNotification {
type Params = CreateFilesParams;
const METHOD: &'static str = "workspace/didCreateFiles";
}
pub struct DidRenameFilesNotification;
impl LspNotification for DidRenameFilesNotification {
type Params = RenameFilesParams;
const METHOD: &'static str = "workspace/didRenameFiles";
}
pub struct DidDeleteFilesNotification;
impl LspNotification for DidDeleteFilesNotification {
type Params = DeleteFilesParams;
const METHOD: &'static str = "workspace/didDeleteFiles";
}
pub struct DidOpenNotebookDocumentNotification;
impl LspNotification for DidOpenNotebookDocumentNotification {
type Params = DidOpenNotebookDocumentParams;
const METHOD: &'static str = "notebookDocument/didOpen";
}
pub struct DidChangeNotebookDocumentNotification;
impl LspNotification for DidChangeNotebookDocumentNotification {
type Params = DidChangeNotebookDocumentParams;
const METHOD: &'static str = "notebookDocument/didChange";
}
pub struct DidSaveNotebookDocumentNotification;
impl LspNotification for DidSaveNotebookDocumentNotification {
type Params = DidSaveNotebookDocumentParams;
const METHOD: &'static str = "notebookDocument/didSave";
}
pub struct DidCloseNotebookDocumentNotification;
impl LspNotification for DidCloseNotebookDocumentNotification {
type Params = DidCloseNotebookDocumentParams;
const METHOD: &'static str = "notebookDocument/didClose";
}
pub struct InitializedNotification;
impl LspNotification for InitializedNotification {
type Params = InitializedParams;
const METHOD: &'static str = "initialized";
}
pub struct ExitNotification;
impl LspNotification for ExitNotification {
type Params = ();
const METHOD: &'static str = "exit";
}
pub struct DidChangeConfigurationNotification;
impl LspNotification for DidChangeConfigurationNotification {
type Params = DidChangeConfigurationParams;
const METHOD: &'static str = "workspace/didChangeConfiguration";
}
pub struct ShowMessageNotification;
impl LspNotification for ShowMessageNotification {
type Params = ShowMessageParams;
const METHOD: &'static str = "window/showMessage";
}
pub struct LogMessageNotification;
impl LspNotification for LogMessageNotification {
type Params = LogMessageParams;
const METHOD: &'static str = "window/logMessage";
}
pub struct TelemetryEventNotification;
impl LspNotification for TelemetryEventNotification {
type Params = LSPAny;
const METHOD: &'static str = "telemetry/event";
}
pub struct DidOpenTextDocumentNotification;
impl LspNotification for DidOpenTextDocumentNotification {
type Params = DidOpenTextDocumentParams;
const METHOD: &'static str = "textDocument/didOpen";
}
pub struct DidChangeTextDocumentNotification;
impl LspNotification for DidChangeTextDocumentNotification {
type Params = DidChangeTextDocumentParams;
const METHOD: &'static str = "textDocument/didChange";
}
pub struct DidCloseTextDocumentNotification;
impl LspNotification for DidCloseTextDocumentNotification {
type Params = DidCloseTextDocumentParams;
const METHOD: &'static str = "textDocument/didClose";
}
pub struct DidSaveTextDocumentNotification;
impl LspNotification for DidSaveTextDocumentNotification {
type Params = DidSaveTextDocumentParams;
const METHOD: &'static str = "textDocument/didSave";
}
pub struct WillSaveTextDocumentNotification;
impl LspNotification for WillSaveTextDocumentNotification {
type Params = WillSaveTextDocumentParams;
const METHOD: &'static str = "textDocument/willSave";
}
pub struct DidChangeWatchedFilesNotification;
impl LspNotification for DidChangeWatchedFilesNotification {
type Params = DidChangeWatchedFilesParams;
const METHOD: &'static str = "workspace/didChangeWatchedFiles";
}
pub struct PublishDiagnosticsNotification;
impl LspNotification for PublishDiagnosticsNotification {
type Params = PublishDiagnosticsParams;
const METHOD: &'static str = "textDocument/publishDiagnostics";
}
pub struct SetTraceNotification;
impl LspNotification for SetTraceNotification {
type Params = SetTraceParams;
const METHOD: &'static str = "$/setTrace";
}
pub struct LogTraceNotification;
impl LspNotification for LogTraceNotification {
type Params = LogTraceParams;
const METHOD: &'static str = "$/logTrace";
}
pub struct CancelNotification;
impl LspNotification for CancelNotification {
type Params = CancelParams;
const METHOD: &'static str = "$/cancelRequest";
}
pub struct ProgressNotification;
impl LspNotification for ProgressNotification {
type Params = ProgressParams;
const METHOD: &'static str = "$/progress";
}