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;
12pub mod CollaborationPermissions;
13pub mod CollaborationSession;
14pub mod Features;
15pub mod InitializeAdvancedFeatures;
16pub mod MessageCache;
17pub mod PerformanceStats;
18pub mod mountain_create_collaboration_session;
19pub mod mountain_get_cache_stats;
20pub mod mountain_get_collaboration_sessions;
21pub mod mountain_get_performance_stats;