DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/Security/PermissionManager/mod.rs
1//! # Permission Manager (IPC Security)
2//!
3//! Role-based access control for the IPC layer with built-in
4//! audit logging. `Manager::Struct` is the enforcement core;
5//! `SecurityContext::Struct` is the per-request envelope;
6//! `SecurityEvent::Struct` + `SecurityEventType::Enum` carry
7//! the audit trail.
8
9pub mod Manager;
10
11pub mod SecurityContext;
12
13pub mod SecurityEvent;
14
15pub mod SecurityEventType;