Mountain/ApplicationState/DTO/
mod.rs

1//! # ApplicationState DTO Module
2//!
3//! This module aggregates and re-exports all Data Transfer Objects (DTOs) that
4//! are used to represent the various components of the application's central
5//! state.
6
7#![allow(non_snake_case, non_camel_case_types)]
8
9// --- Module Declarations (alphabetical) ---
10pub mod CustomDocumentStateDTO;
11
12pub mod DocumentStateDTO;
13
14pub mod ExtensionDescriptionStateDTO;
15
16pub mod MarkerDataDTO;
17
18pub mod MergedConfigurationStateDTO;
19
20pub mod OutputChannelStateDTO;
21
22pub mod ProviderRegistrationDTO;
23
24pub mod RPCModelContentChangeDTO;
25
26pub mod TerminalStateDTO;
27
28pub mod TreeViewStateDTO;
29
30pub mod WebViewStateDTO;
31
32pub mod WindowStateDTO;
33
34pub mod WorkSpaceFolderStateDTO;