Common/LanguageFeature/DTO/
mod.rs

1//! # LanguageFeature DTO Module
2//!
3//! Aggregates and re-exports all Data Transfer Objects (DTOs) related to the
4//! various Language Feature APIs (e.g., completions, hovers, symbols).
5
6#![allow(non_snake_case, non_camel_case_types)]
7
8pub mod CompletionContextDTO;
9
10pub mod CompletionItemDTO;
11
12pub mod CompletionListDTO;
13
14pub mod HoverResultDTO;
15
16pub mod IMarkdownStringDTO;
17
18pub mod LocationDTO;
19
20pub mod PositionDTO;
21
22pub mod ProviderType;
23
24pub mod RangeDTO;
25
26pub mod TextEditDTO;