CommonLibrary/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
6pub mod CompletionContextDTO;
7
8pub mod CompletionItemDTO;
9
10pub mod CompletionListDTO;
11
12pub mod HoverResultDTO;
13
14pub mod IMarkdownStringDTO;
15
16pub mod LocationDTO;
17
18pub mod PositionDTO;
19
20pub mod ProviderType;
21
22pub mod RangeDTO;
23
24pub mod TextEditDTO;