Skip to main content

Mountain/IPC/AdvancedFeatures/
mod.rs

1#![allow(non_snake_case)]
2
3//! # Advanced IPC features
4//!
5//! Performance counters, message-cache, realtime collaboration
6//! session tracking, and the four `mountain_*` Tauri commands
7//! that surface them. The `Features::Struct` aggregator + impl
8//! lives in `Features.rs` (tightly-coupled cluster); the DTOs
9//! and Tauri commands live in their own siblings.
10
11pub mod CachedMessage;
12
13pub mod CollaborationPermissions;
14
15pub mod CollaborationSession;
16
17pub mod Features;
18
19pub mod InitializeAdvancedFeatures;
20
21pub mod MessageCache;
22
23pub mod PerformanceStats;
24
25pub mod mountain_create_collaboration_session;
26
27pub mod mountain_get_cache_stats;
28
29pub mod mountain_get_collaboration_sessions;
30
31pub mod mountain_get_performance_stats;