Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/AdvancedFeatures/
mod.rs

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