CommonLibrary/TreeView/
mod.rs

1//! # TreeView Service
2//!
3//! This module defines the abstract contract for the TreeView service. It
4//! includes the `TreeViewProvider` trait, all related Data Transfer Objects
5//! (DTOs), and will contain the `ActionEffect` constructors for every tree view
6//! operation.
7
8// --- Trait Definition ---
9pub mod TreeViewProvider;
10
11// --- Data Transfer Objects ---
12pub mod DTO;